From 74acf21cc8b32d417b7615e04a87364086681383 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Wed, 25 Jun 2025 15:39:35 +0200 Subject: [PATCH 1/8] feat(vpc): add support for routes propagation --- docs/data-sources/vpcs.md | 2 ++ docs/resources/vpc.md | 1 + docs/resources/vpc_private_network.md | 1 + internal/services/vpc/private_network.go | 25 +++++++++++++------- internal/services/vpc/vpc.go | 30 ++++++++++++++++++++++++ 5 files changed, 51 insertions(+), 8 deletions(-) diff --git a/docs/data-sources/vpcs.md b/docs/data-sources/vpcs.md index fc13ce1542..5c0818c5ed 100644 --- a/docs/data-sources/vpcs.md +++ b/docs/data-sources/vpcs.md @@ -42,3 +42,5 @@ In addition to all arguments above, the following attributes are exported: - `updated_at` - Date and time of VPC's last update (RFC 3339 format). - `organization_id` - The Organization ID the VPC is associated with. - `project_id` - The ID of the Project the VPC is associated with. + - `enable_routing` - Defines whether routing between Private Networks in the VPC is enabled. + - `enable_custom_routes_propagation` - Defines whether the VPC advertises custom routes between its Private Networks. diff --git a/docs/resources/vpc.md b/docs/resources/vpc.md index 0dca306b27..0e271248fc 100644 --- a/docs/resources/vpc.md +++ b/docs/resources/vpc.md @@ -36,6 +36,7 @@ The following arguments are supported: - `name` - (Optional) The name for the VPC. If not provided it will be randomly generated. - `tags` - (Optional) The tags to associate with the VPC. - `enable_routing` - (Optional) Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards. +- `enable_custom_routes_propagation` - (Optional) Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards. - `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the VPC. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the VPC is associated with. diff --git a/docs/resources/vpc_private_network.md b/docs/resources/vpc_private_network.md index f8d30d316a..f949075dfb 100644 --- a/docs/resources/vpc_private_network.md +++ b/docs/resources/vpc_private_network.md @@ -52,6 +52,7 @@ The following arguments are supported: - `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the Private Network. - `vpc_id` - (Optional) The VPC in which to create the Private Network. - `is_regional` - (Deprecated) Private Networks are now all necessarily regional. +- `enable_default_route_propagation` - (Optional) Defines whether default v4 and v6 routes are propagated for this Private Network. - `zone` - (Deprecated) Use `region` instead. ## Attributes Reference diff --git a/internal/services/vpc/private_network.go b/internal/services/vpc/private_network.go index d25b5f0bef..a30f6c4afd 100644 --- a/internal/services/vpc/private_network.go +++ b/internal/services/vpc/private_network.go @@ -159,6 +159,12 @@ func ResourcePrivateNetwork() *schema.Resource { ForceNew: true, Description: "The VPC in which to create the private network", }, + "default_route_propagation_enabled": { + Type: schema.TypeBool, + Optional: true, + Computed: true, + Description: "Defines whether default v4 and v6 routes are propagated for this Private Network", + }, "project_id": account.ProjectIDSchema(), "zone": { Type: schema.TypeString, @@ -197,10 +203,11 @@ func ResourceVPCPrivateNetworkCreate(ctx context.Context, d *schema.ResourceData } req := &vpc.CreatePrivateNetworkRequest{ - Name: types.ExpandOrGenerateString(d.Get("name"), "pn"), - Tags: types.ExpandStrings(d.Get("tags")), - ProjectID: d.Get("project_id").(string), - Region: region, + Name: types.ExpandOrGenerateString(d.Get("name"), "pn"), + Tags: types.ExpandStrings(d.Get("tags")), + DefaultRoutePropagationEnabled: d.Get("enable_default_route_propagation").(bool), + ProjectID: d.Get("project_id").(string), + Region: region, } if _, ok := d.GetOk("vpc_id"); ok { @@ -258,6 +265,7 @@ func ResourceVPCPrivateNetworkRead(ctx context.Context, d *schema.ResourceData, _ = d.Set("created_at", types.FlattenTime(pn.CreatedAt)) _ = d.Set("updated_at", types.FlattenTime(pn.UpdatedAt)) _ = d.Set("tags", pn.Tags) + _ = d.Set("enable_default_route_propagation", pn.DefaultRoutePropagationEnabled) _ = d.Set("region", region) _ = d.Set("is_regional", true) _ = d.Set("zone", zone) @@ -276,10 +284,11 @@ func ResourceVPCPrivateNetworkUpdate(ctx context.Context, d *schema.ResourceData } _, err = vpcAPI.UpdatePrivateNetwork(&vpc.UpdatePrivateNetworkRequest{ - PrivateNetworkID: ID, - Region: region, - Name: scw.StringPtr(d.Get("name").(string)), - Tags: types.ExpandUpdatedStringsPtr(d.Get("tags")), + PrivateNetworkID: ID, + Region: region, + Name: scw.StringPtr(d.Get("name").(string)), + Tags: types.ExpandUpdatedStringsPtr(d.Get("tags")), + DefaultRoutePropagationEnabled: types.ExpandBoolPtr(d.Get("enable_default_route_propagation").(bool)), }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) diff --git a/internal/services/vpc/vpc.go b/internal/services/vpc/vpc.go index f571d74f7f..d14d728937 100644 --- a/internal/services/vpc/vpc.go +++ b/internal/services/vpc/vpc.go @@ -45,6 +45,12 @@ func ResourceVPC() *schema.Resource { Computed: true, Description: "Enable routing between Private Networks in the VPC", }, + "enable_custom_routes_propagation": { + Type: schema.TypeBool, + Optional: true, + Computed: true, + Description: "Defines whether the VPC advertises custom routes between its Private Networks", + }, "project_id": account.ProjectIDSchema(), "region": regional.Schema(), // Computed elements @@ -93,6 +99,16 @@ func ResourceVPCCreate(ctx context.Context, d *schema.ResourceData, m any) diag. return diag.FromErr(err) } + if _, ok := d.GetOk("enable_custom_routes_propagation"); ok { + _, err = vpcAPI.EnableCustomRoutesPropagation(&vpc.EnableCustomRoutesPropagationRequest{ + Region: region, + VpcID: res.ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + d.SetId(regional.NewIDString(region, res.ID)) return ResourceVPCRead(ctx, d, m) @@ -125,6 +141,7 @@ func ResourceVPCRead(ctx context.Context, d *schema.ResourceData, m any) diag.Di _ = d.Set("updated_at", types.FlattenTime(res.UpdatedAt)) _ = d.Set("is_default", res.IsDefault) _ = d.Set("enable_routing", res.RoutingEnabled) + _ = d.Set("enable_custom_routes_propagation", res.CustomRoutesPropagationEnabled) _ = d.Set("region", region) if len(res.Tags) > 0 { @@ -177,6 +194,19 @@ func ResourceVPCUpdate(ctx context.Context, d *schema.ResourceData, m any) diag. } } + if d.HasChange("enable_custom_routes_propagation") { + enableCustomRoutesPropagation := d.Get("enable_custom_routes_propagation").(bool) + if enableCustomRoutesPropagation { + _, err = vpcAPI.EnableCustomRoutesPropagation(&vpc.EnableCustomRoutesPropagationRequest{ + Region: region, + VpcID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + } + return ResourceVPCRead(ctx, d, m) } From ae8b809a395b3f44f3fb5f15e253176490d9da99 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 30 Jun 2025 16:51:58 +0200 Subject: [PATCH 2/8] add tests --- docs/resources/vpc.md | 2 +- internal/services/vpc/private_network.go | 2 +- internal/services/vpc/private_network_test.go | 15 +- .../vpc/testdata/vpc-basic.cassette.yaml | 157 +++++++++----- .../vpc-private-network-basic.cassette.yaml | 194 +++++++++--------- internal/services/vpc/vpc.go | 2 +- internal/services/vpc/vpc_test.go | 1 + 7 files changed, 218 insertions(+), 155 deletions(-) diff --git a/docs/resources/vpc.md b/docs/resources/vpc.md index 0e271248fc..d951242777 100644 --- a/docs/resources/vpc.md +++ b/docs/resources/vpc.md @@ -36,7 +36,7 @@ The following arguments are supported: - `name` - (Optional) The name for the VPC. If not provided it will be randomly generated. - `tags` - (Optional) The tags to associate with the VPC. - `enable_routing` - (Optional) Enable routing between Private Networks in the VPC. Note that you will not be able to deactivate it afterwards. -- `enable_custom_routes_propagation` - (Optional) Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards. +- `enable_custom_routes_propagation` - (`true` for newly created VPCs) Defines whether the VPC advertises custom routes between its Private Networks. Note that you will not be able to deactivate it afterwards. - `region` - (Defaults to [provider](../index.md#region) `region`) The [region](../guides/regions_and_zones.md#regions) of the VPC. - `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the VPC is associated with. diff --git a/internal/services/vpc/private_network.go b/internal/services/vpc/private_network.go index a30f6c4afd..07777c5373 100644 --- a/internal/services/vpc/private_network.go +++ b/internal/services/vpc/private_network.go @@ -159,7 +159,7 @@ func ResourcePrivateNetwork() *schema.Resource { ForceNew: true, Description: "The VPC in which to create the private network", }, - "default_route_propagation_enabled": { + "enable_default_route_propagation": { Type: schema.TypeBool, Optional: true, Computed: true, diff --git a/internal/services/vpc/private_network_test.go b/internal/services/vpc/private_network_test.go index cd0f2ec341..82c809c2d1 100644 --- a/internal/services/vpc/private_network_test.go +++ b/internal/services/vpc/private_network_test.go @@ -43,13 +43,19 @@ func TestAccVPCPrivateNetwork_Basic(t *testing.T) { "region", "fr-par", ), + resource.TestCheckResourceAttr( + "scaleway_vpc_private_network.pn01", + "enable_default_route_propagation", + "false", + ), ), }, { Config: fmt.Sprintf(` resource scaleway_vpc_private_network pn01 { - name = "%s" - tags = ["tag0", "tag1"] + name = "%s" + tags = ["tag0", "tag1"] + enable_default_route_propagation = true } `, privateNetworkName), Check: resource.ComposeTestCheckFunc( @@ -67,6 +73,11 @@ func TestAccVPCPrivateNetwork_Basic(t *testing.T) { "tags.1", "tag1", ), + resource.TestCheckResourceAttr( + "scaleway_vpc_private_network.pn01", + "enable_default_route_propagation", + "true", + ), ), }, }, diff --git a/internal/services/vpc/testdata/vpc-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-basic.cassette.yaml index e3db7c9781..db7cf3164b 100644 --- a/internal/services/vpc/testdata/vpc-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-vpc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"test-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.4; darwin; arm64) 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: 364 + content_length: 396 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.946341Z","id":"01e9de51-1156-4ace-9b02-8048eb21ce68","is_default":false,"name":"test-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-28T10:05:15.946341Z"}' + body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":false,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.670387Z"}' headers: Content-Length: - - "364" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 14:35:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e13796ae-45a3-40e5-8e9d-b4af2e3b710e + - 4f04f91d-97ab-469c-b188-6b76ee3eccd0 status: 200 OK code: 200 - duration: 414.722792ms + duration: 536.625333ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/01e9de51-1156-4ace-9b02-8048eb21ce68 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.946341Z","id":"01e9de51-1156-4ace-9b02-8048eb21ce68","is_default":false,"name":"test-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-28T10:05:15.946341Z"}' + body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 14:35:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 549403ec-acf6-4688-b88b-ab23d59d1746 + - f6bb917f-493a-47b9-b349-7831deac1278 status: 200 OK code: 200 - duration: 30.044958ms + duration: 85.197834ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,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/01e9de51-1156-4ace-9b02-8048eb21ce68 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.946341Z","id":"01e9de51-1156-4ace-9b02-8048eb21ce68","is_default":false,"name":"test-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-28T10:05:15.946341Z"}' + body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' headers: Content-Length: - - "364" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 14:35:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3710d8b-c85f-4598-b064-007be4d16610 + - 6f98d75e-5678-46f5-b9e9-d8e72df9432d status: 200 OK code: 200 - duration: 30.106083ms + duration: 53.833917ms - id: 3 request: proto: HTTP/1.1 @@ -165,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/vpcs/01e9de51-1156-4ace-9b02-8048eb21ce68 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.946341Z","id":"01e9de51-1156-4ace-9b02-8048eb21ce68","is_default":false,"name":"test-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-28T10:05:15.946341Z"}' + body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' headers: Content-Length: - - "364" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 14:35:34 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9734e596-fee9-4111-b7e7-90b65d26ea5d + - f92f8a4c-7471-4a2c-ac9a-10184e5f1c0d status: 200 OK code: 200 - duration: 38.359416ms + duration: 53.938875ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +216,57 @@ 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/01e9de51-1156-4ace-9b02-8048eb21ce68 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 395 + uncompressed: false + body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' + headers: + Content-Length: + - "395" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 14:35:35 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90ba7bae-3637-49f0-a701-711503be697a + status: 200 OK + code: 200 + duration: 54.986333ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 method: DELETE response: proto: HTTP/2.0 @@ -232,9 +283,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 14:35:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,11 +293,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73d174bb-7192-4fd3-9814-9f8d34e85c57 + - c4b34a41-13d8-4b42-a53b-51fcbb22c1e6 status: 204 No Content code: 204 - duration: 84.8405ms - - id: 5 + duration: 128.426209ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -261,8 +312,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/01e9de51-1156-4ace-9b02-8048eb21ce68 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 method: GET response: proto: HTTP/2.0 @@ -272,7 +323,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"01e9de51-1156-4ace-9b02-8048eb21ce68","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","type":"not_found"}' headers: Content-Length: - "124" @@ -281,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 14:35:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,7 +342,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 082adeea-c82d-4663-baa0-9a6519937e1a + - 3c69b9cf-eb33-4e64-973b-af160e9c8c02 status: 404 Not Found code: 404 - duration: 29.944416ms + duration: 29.296ms diff --git a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml index 94f110c2ce..dec5fce9fa 100644 --- a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 108 + content_length: 150 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private-network-test","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"private-network-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1023 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1023" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 14:47:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c266ebd-85e4-4822-9737-e9770fc03b6c + - 01a8cb4f-07f5-4d0d-8191-403c62a2eb8c status: 200 OK code: 200 - duration: 1.0852475s + duration: 929.528625ms - 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/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1046 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1046" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 14:47:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6790cb68-0489-41af-94bc-1998eab8600b + - d4af250b-7022-4090-98ff-57794ddc25c2 status: 200 OK code: 200 - duration: 31.761416ms + duration: 64.7065ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1046 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1046" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 14:47:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29d65402-daa9-4b4c-bac3-866488b870e7 + - 2dd9d5db-6347-4620-8a23-9927959ba862 status: 200 OK code: 200 - duration: 29.373333ms + duration: 80.208875ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1023 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1023" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 14:47:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d01356d-c19d-46ef-a612-7d1f92524055 + - 5b3d78bc-d66c-4175-b4f1-5da2b70c5f99 status: 200 OK code: 200 - duration: 42.847208ms + duration: 138.1595ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1046 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1046" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 14:47:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,29 +244,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48a7d76e-ce64-418a-8e1a-d3da1651969f + - e4cc6296-1400-41cc-b19d-02f1ebd16487 status: 200 OK code: 200 - duration: 43.748167ms + duration: 65.257375ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 54 + content_length: 95 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"private-network-test","tags":["tag0","tag1"]}' + body: '{"name":"private-network-test","tags":["tag0","tag1"],"default_route_propagation_enabled":true}' 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/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: PATCH response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1078 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":["tag0","tag1"],"updated_at":"2025-01-28T10:05:20.578648Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1060" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 14:47:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa11470a-00bd-465b-b5de-c50a16bf4897 + - 91cb1524-2eac-473f-9e01-8b5eceb74cb9 status: 200 OK code: 200 - duration: 48.300667ms + duration: 126.009ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1036 + content_length: 1078 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":["tag0","tag1"],"updated_at":"2025-01-28T10:05:20.578648Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1036" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 14:47:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6daad20-cf7b-4760-837d-5ee11dff5ec6 + - 12dbd27a-af8b-4169-961a-858dfc3d02ad status: 200 OK code: 200 - duration: 26.146542ms + duration: 32.513666ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 1078 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":["tag0","tag1"],"updated_at":"2025-01-28T10:05:20.578648Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1060" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 14:47:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fad13e4-b437-4785-a57d-719ee026af04 + - 516bec97-4f05-4948-b50f-7c08025d299a status: 200 OK code: 200 - duration: 30.4035ms + duration: 44.37725ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1036 + content_length: 1078 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.970390Z","dhcp_enabled":true,"id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","name":"private-network-test","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.970390Z","id":"62c211fb-657e-4c78-a98a-0a10f8d4c9a9","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.0.0/22","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.970390Z","id":"40a40353-9529-44c2-a1da-b40022f9b4f6","private_network_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:529f::/64","updated_at":"2025-01-28T10:05:15.970390Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":["tag0","tag1"],"updated_at":"2025-01-28T10:05:20.578648Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1036" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 14:47:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a9e1f3c-23ec-43a5-9ea1-a8a1201052b1 + - 842dfca0-bd43-4506-b1f9-eeb8a69c82cb status: 200 OK code: 200 - duration: 32.98525ms + duration: 26.725375ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: DELETE response: proto: HTTP/2.0 @@ -479,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 14:47:35 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93d29f62-e1a5-4b06-9f3e-9777e2b5e5f4 + - 9e3d189d-55f4-4d9e-b1d8-82ff7a05dd30 status: 204 No Content code: 204 - duration: 1.141998791s + duration: 4.349543667s - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,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/bc941e90-f569-4daf-9c99-828c35f9d4b5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 method: GET response: proto: HTTP/2.0 @@ -519,7 +519,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"bc941e90-f569-4daf-9c99-828c35f9d4b5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","type":"not_found"}' headers: Content-Length: - "136" @@ -528,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 14:47:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13e4f3cd-527c-4af7-8f2e-f1052b3f5dac + - ec96b6d0-48b0-4b5c-bcb6-d4060d27c840 status: 404 Not Found code: 404 - duration: 29.045083ms + duration: 87.2175ms diff --git a/internal/services/vpc/vpc.go b/internal/services/vpc/vpc.go index d14d728937..d8c7a2833a 100644 --- a/internal/services/vpc/vpc.go +++ b/internal/services/vpc/vpc.go @@ -48,7 +48,7 @@ func ResourceVPC() *schema.Resource { "enable_custom_routes_propagation": { Type: schema.TypeBool, Optional: true, - Computed: true, + Default: true, Description: "Defines whether the VPC advertises custom routes between its Private Networks", }, "project_id": account.ProjectIDSchema(), diff --git a/internal/services/vpc/vpc_test.go b/internal/services/vpc/vpc_test.go index d78389b65a..ce1aa90d19 100644 --- a/internal/services/vpc/vpc_test.go +++ b/internal/services/vpc/vpc_test.go @@ -34,6 +34,7 @@ func TestAccVPC_Basic(t *testing.T) { resource.TestCheckResourceAttrSet("scaleway_vpc.vpc01", "created_at"), resource.TestCheckResourceAttrSet("scaleway_vpc.vpc01", "updated_at"), resource.TestCheckResourceAttr("scaleway_vpc.vpc01", "enable_routing", "true"), + resource.TestCheckResourceAttr("scaleway_vpc.vpc01", "enable_custom_routes_propagation", "true"), ), }, }, From 8c2a4ac580c93cdbf330d641bf6c10e91e377253 Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 30 Jun 2025 17:28:32 +0200 Subject: [PATCH 3/8] update cassettes --- .../testdata/server-enable-vpc.cassette.yaml | 2291 ++++++----- .../private-nic-with-ipam.cassette.yaml | 1433 ++++--- .../data-source-ipam-ips-basic.cassette.yaml | 871 ++-- ...ource-ipam-ips-redis-cluster.cassette.yaml | 1548 ++++---- ...ta-source-ipamip-instance-lb.cassette.yaml | 1922 ++++----- .../data-source-ipamip-instance.cassette.yaml | 1483 +++---- .../data-source-ipamipid.cassette.yaml | 466 ++- .../data-source-ipamiprdb.cassette.yaml | 560 +-- .../ipam/testdata/ipamip-basic.cassette.yaml | 345 +- .../ipamip-with-custom-resource.cassette.yaml | 823 ++-- ...amip-with-standalone-address.cassette.yaml | 396 +- .../testdata/ipamip-with-tags.cassette.yaml | 585 +-- ...th-private-networks-ipam-ids.cassette.yaml | 833 ++-- ...tance-private-network-update.cassette.yaml | 2498 ++++++------ .../instance-private-network.cassette.yaml | 1964 +++++---- .../vpc/testdata/acl-basic.cassette.yaml | 311 +- .../data-source-routes-basic.cassette.yaml | 1988 +++++----- .../data-source-vp-cs-basic.cassette.yaml | 630 +-- .../data-source-vpc-basic.cassette.yaml | 495 +-- .../data-source-vpc-default.cassette.yaml | 170 +- ...ce-vpc-private-network-basic.cassette.yaml | 424 +- ...e-vpc-private-network-vpc-id.cassette.yaml | 998 ++--- .../vpc/{ => testdata}/testfuncs/checks.go | 0 .../vpc/{ => testdata}/testfuncs/sweep.go | 0 .../vpc/testdata/vpc-basic.cassette.yaml | 66 +- .../vpc-disable-routing.cassette.yaml | 230 +- .../vpc-private-network-basic.cassette.yaml | 199 +- ...private-network-default-name.cassette.yaml | 100 +- ...c-private-network-one-subnet.cassette.yaml | 233 +- .../vpc-private-network-subnets.cassette.yaml | 389 +- .../testdata/vpc-route-basic.cassette.yaml | 3519 +++++++++-------- .../testdata/vpc-with-region.cassette.yaml | 320 +- .../vpc/testdata/vpc-with-tags.cassette.yaml | 255 +- ...ublic-gateway-pat-rule-basic.cassette.yaml | 1861 +++++---- ...way-network-with-ipam-config.cassette.yaml | 1159 +++--- 35 files changed, 17118 insertions(+), 14247 deletions(-) rename internal/services/vpc/{ => testdata}/testfuncs/checks.go (100%) rename internal/services/vpc/{ => testdata}/testfuncs/sweep.go (100%) diff --git a/internal/services/applesilicon/testdata/server-enable-vpc.cassette.yaml b/internal/services/applesilicon/testdata/server-enable-vpc.cassette.yaml index cdca10ddea..4a1f908693 100644 --- a/internal/services/applesilicon/testdata/server-enable-vpc.cassette.yaml +++ b/internal/services/applesilicon/testdata/server-enable-vpc.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 421 + content_length: 410 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":false,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:58.518733Z"}' headers: Content-Length: - - "421" + - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:05 GMT + - Mon, 30 Jun 2025 14:58:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa59086a-451d-47fe-bdee-5ae0b3129a6b + - 005289b2-83c3-45a2-b478-c7a624edd764 status: 200 OK code: 200 - duration: 165.879833ms + duration: 723.302459ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "421" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:05 GMT + - Mon, 30 Jun 2025 14:58:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88868511-d891-42cc-995f-da9598c61687 + - eb19c19b-c4e6-4b63-878e-07e6a28685fe status: 200 OK code: 200 - duration: 28.662583ms + duration: 744.784709ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 158 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServerEnableVPC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "1091" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:06 GMT + - Mon, 30 Jun 2025 14:58:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2655b117-09c1-4b44-bd85-e075ad812d56 + - d9e6a29d-ee57-4c32-b875-db0b7b3dc421 status: 200 OK code: 200 - duration: 661.461375ms + duration: 114.381459ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 200 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccServerEnableVPC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "1091" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:06 GMT + - Mon, 30 Jun 2025 14:59:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7005944-21a9-4de3-a9f8-11f58bc92b8f + - afd6399e-4a10-4f23-b0d2-6f2c424c4c41 status: 200 OK code: 200 - duration: 41.90475ms + duration: 688.225209ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 150 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServerEnableVPC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"M2-M","enable_vpc":true,"commitment_type":"duration_24h"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 956 + content_length: 1068 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-05-26T15:28:06.381429Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "956" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:06 GMT + - Mon, 30 Jun 2025 14:59:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,48 +248,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b28024-fd77-4abc-83d0-761ad0899cbc + - 2e044a9d-accf-49cf-a9c5-b5326854f190 status: 200 OK code: 200 - duration: 253.217916ms + duration: 440.626791ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 175 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccServerEnableVPC","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","type":"M2-M","enable_vpc":true,"commitment_type":"duration_24h","public_bandwidth_bps":0}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 950 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:06.381429Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-06-30T14:59:00.738298Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "950" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:06 GMT + - Mon, 30 Jun 2025 14:59:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 319ee6c8-d756-40eb-959f-19fcd7517c13 + - 09912400-314f-46ec-a6bf-39aa92f45300 status: 200 OK code: 200 - duration: 127.288083ms + duration: 231.819083ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -325,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:06.381429Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:00.738298Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:11 GMT + - Mon, 30 Jun 2025 14:59:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c61132c-98e9-4bfe-b7f5-03347449437e + - 344c331d-05e8-4a0a-a65d-f91d4cfb49a1 status: 200 OK code: 200 - duration: 134.929584ms + duration: 130.833708ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:12.979975Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:00.847930Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:16 GMT + - Mon, 30 Jun 2025 14:59:06 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c626e92a-fb5d-478d-aeda-956199aa2fd5 + - 83f009d0-9daa-475d-9078-725f8156a7fc status: 200 OK code: 200 - duration: 126.907416ms + duration: 118.169167ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:12.979975Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:10.869898Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:21 GMT + - Mon, 30 Jun 2025 14:59:11 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8e5cec4-7ee4-42ad-a395-ad2ace500e88 + - f91935cc-919c-49ff-9160-255605c48029 status: 200 OK code: 200 - duration: 119.995875ms + duration: 142.577875ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -472,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:23.004474Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:10.869898Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:27 GMT + - Mon, 30 Jun 2025 14:59:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b81b2252-10b0-4b68-90fe-e9fc84a0a418 + - 591a48ab-9c30-4220-9358-ac7f2cc998cd status: 200 OK code: 200 - duration: 119.940625ms + duration: 137.179125ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -521,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:23.004474Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:20.894135Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:32 GMT + - Mon, 30 Jun 2025 14:59:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a732367b-ffe2-4293-84bf-b89128ae45e2 + - 11ed1185-b956-4230-b7ea-1236c3424ee4 status: 200 OK code: 200 - duration: 127.85625ms + duration: 127.013291ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -570,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:23.004474Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:20.894135Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:37 GMT + - Mon, 30 Jun 2025 14:59:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be4615e9-1319-46ee-b988-5008b33d78d9 + - b5f9fe4d-4a8f-4aa1-a94b-7652d36f536a status: 200 OK code: 200 - duration: 138.319917ms + duration: 165.885416ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -619,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:23.004474Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:20.894135Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:42 GMT + - Mon, 30 Jun 2025 14:59:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97dad2ae-46e8-4b9f-9e29-b619749013f3 + - 866194b0-00dc-4aac-9301-94e8c408f068 status: 200 OK code: 200 - duration: 118.975583ms + duration: 161.146208ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -668,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:47.103642Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:20.894135Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:47 GMT + - Mon, 30 Jun 2025 14:59:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3462bb-79c4-4794-95b0-97396504ea4d + - 92e75df1-22bb-44de-bfef-a9f1d5d9a601 status: 200 OK code: 200 - duration: 120.043458ms + duration: 139.550459ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -717,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:47.103642Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:20.894135Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:52 GMT + - Mon, 30 Jun 2025 14:59:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2323d761-cf51-418e-bf55-64dad4bbffd7 + - 6964a44a-471c-44de-bedf-e2db6f4e0658 status: 200 OK code: 200 - duration: 132.635208ms + duration: 145.374666ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -766,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:47.103642Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:44.970787Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:28:57 GMT + - Mon, 30 Jun 2025 14:59:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f4892d6-f02a-440a-bb36-6686125e1317 + - f37c9070-389d-4c59-9ed4-df941fd49d75 status: 200 OK code: 200 - duration: 106.654917ms + duration: 137.3535ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -815,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:28:57.913698Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:44.970787Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:02 GMT + - Mon, 30 Jun 2025 14:59:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d18c8878-e1f4-42d6-be7d-900a1fbe30d8 + - d429fe21-5981-48c1-8a7d-bc4bfdfa0820 status: 200 OK code: 200 - duration: 114.730333ms + duration: 131.671584ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -864,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:07.940292Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:55.081926Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:08 GMT + - Mon, 30 Jun 2025 14:59:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b58c08b0-9646-49f8-a82a-edb664d07c72 + - 780efbba-87c3-40be-9c7e-e002bd2552e1 status: 200 OK code: 200 - duration: 214.949833ms + duration: 207.880708ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -913,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:07.940292Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T14:59:55.081926Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:13 GMT + - Mon, 30 Jun 2025 15:00:02 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b1536d5-91a8-4a75-a7fd-066dccc98d0e + - a7ccb6af-330a-44b0-95ae-1f4f97c52efe status: 200 OK code: 200 - duration: 124.26525ms + duration: 162.540583ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -962,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:17.965455Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:05.104811Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:18 GMT + - Mon, 30 Jun 2025 15:00:07 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b746ec9-103d-4e25-bd4d-8135655bdba4 + - d8c8f9e3-63d1-4c92-b619-f5199d10c024 status: 200 OK code: 200 - duration: 114.006166ms + duration: 116.7135ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1011,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:17.965455Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:05.104811Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:23 GMT + - Mon, 30 Jun 2025 15:00:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b6750a9-b86d-4e6c-ae2c-b911189015f2 + - 6874aedf-b9b3-49c5-bef7-f2c596780c4a status: 200 OK code: 200 - duration: 124.420667ms + duration: 141.452083ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1060,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:27.987959Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:15.125779Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:28 GMT + - Mon, 30 Jun 2025 15:00:18 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64c0ebad-22c5-4fb4-878c-6d3375c4d51b + - 56f0237f-2df2-43b4-b814-c36c586ade5a status: 200 OK code: 200 - duration: 127.231375ms + duration: 340.115417ms - id: 22 request: proto: HTTP/1.1 @@ -1100,8 +1102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1109,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:27.987959Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:15.125779Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:00:23 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 342d7301-7bee-47a5-9c27-66895ff5c15e + - 90f67ca8-f6fd-4b77-b8fd-03d66645964d status: 200 OK code: 200 - duration: 125.907625ms + duration: 131.859709ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1158,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:38.014462Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:25.147537Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:38 GMT + - Mon, 30 Jun 2025 15:00:28 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 154bbc4d-3708-436d-b969-1a381ec410a2 + - 11232547-aa67-41cc-b21d-ba4dc50aa384 status: 200 OK code: 200 - duration: 208.818458ms + duration: 148.74375ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1207,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:38.014462Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:25.147537Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:44 GMT + - Mon, 30 Jun 2025 15:00:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2abc74c4-1896-4ba4-8032-c4b73732f127 + - b8542eea-b55b-4e5f-88e1-63f7f7431a52 status: 200 OK code: 200 - duration: 113.092542ms + duration: 125.392ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1256,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:48.036683Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:35.171570Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:00:38 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5efe8f7a-75f4-4736-aaa5-0f89323d5778 + - befb89e3-b43d-4390-b107-82abca07532d status: 200 OK code: 200 - duration: 135.978625ms + duration: 175.85ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1305,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:48.036683Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:35.171570Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:54 GMT + - Mon, 30 Jun 2025 15:00:44 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9201d12-6123-4f59-8d1d-8ffaf98f478b + - 5759bc6e-b14b-4ab0-a050-923b8652f8cc status: 200 OK code: 200 - duration: 132.410334ms + duration: 147.191709ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1354,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:58.062101Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:45.194002Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:29:59 GMT + - Mon, 30 Jun 2025 15:00:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 530ae2e2-c36e-48e3-867c-e7764e2d0a5b + - 809eb3c9-41b7-4e38-a157-fd003fec5879 status: 200 OK code: 200 - duration: 116.132583ms + duration: 126.377166ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1403,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:58.062101Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:45.194002Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:04 GMT + - Mon, 30 Jun 2025 15:00:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8aba33e1-63a6-4b45-9a6d-c76b974e1aa1 + - 6096f309-093b-4bf0-8abf-0bc900e70933 status: 200 OK code: 200 - duration: 154.730666ms + duration: 132.345333ms - id: 29 request: proto: HTTP/1.1 @@ -1443,8 +1445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1452,20 +1454,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 993 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":false,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"starting","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:29:58.062101Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:55.239149Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "993" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:09 GMT + - Mon, 30 Jun 2025 15:00:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f08f8fa-110d-4c1e-99fc-5d6a7a6d8236 + - 1f3c584c-50ac-4df4-9316-643f6e3cd9fb status: 200 OK code: 200 - duration: 115.385625ms + duration: 148.080042ms - id: 30 request: proto: HTTP/1.1 @@ -1492,8 +1494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1501,20 +1503,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 987 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:11.615350Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":false,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"starting","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:00:55.239149Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "988" + - "987" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:01:04 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,50 +1524,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed0bfcaa-770f-43dc-af42-4ad9ba5fca6f + - ac9c8283-3829-4243-b4b6-f4620f021775 status: 200 OK code: 200 - duration: 159.462667ms + duration: 140.539208ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"per_private_network_ipam_ip_ids":{"5036b079-9b17-4c6b-9ff8-33650679473a":[]}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603/private-networks - method: PUT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 460 + content_length: 982 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}]}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:08.800624Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "460" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:16 GMT + - Mon, 30 Jun 2025 15:01:09 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,48 +1573,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a2b4019-9847-4529-924c-a7afa48171a9 + - a47a7f37-2345-412c-9eba-d6593c0b325b status: 200 OK code: 200 - duration: 1.4340665s + duration: 132.894334ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 79 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"per_private_network_ipam_ip_ids":{"d210e5b0-6aed-433d-9eb9-f34b08b601c3":[]}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d/private-networks + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 451 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}]}' headers: Content-Length: - - "477" + - "451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:16 GMT + - Mon, 30 Jun 2025 15:01:13 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62cfb60e-3da3-44d1-b31e-81ee577bec71 + - 7064ca1b-85af-4a6a-83b0-b9869782b23a status: 200 OK code: 200 - duration: 146.181167ms + duration: 4.13127275s - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1650,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 467 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "477" + - "467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:21 GMT + - Mon, 30 Jun 2025 15:01:14 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 595587cd-429b-4409-8735-cce2777f947a + - 465b7c5c-eb67-4deb-885e-cf209a733a4b status: 200 OK code: 200 - duration: 130.906166ms + duration: 222.078916ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1699,20 +1701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 467 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "477" + - "467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:26 GMT + - Mon, 30 Jun 2025 15:01:19 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8a6255a-aedd-4384-a50a-fd228eec86d5 + - caf42828-6ccd-4360-b397-d02ae6ba4e70 status: 200 OK code: 200 - duration: 127.28075ms + duration: 139.154709ms - id: 35 request: proto: HTTP/1.1 @@ -1739,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1748,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 467 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "476" + - "467" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:31 GMT + - Mon, 30 Jun 2025 15:01:24 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8d136c4-a456-4e7d-93a6-7604a20f59ea + - 3d25b74a-6a0a-489b-8a7a-07d8baae470a status: 200 OK code: 200 - duration: 135.318792ms + duration: 125.311291ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1797,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 466 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:11.615350Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "988" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47422cf8-354d-420d-9f6b-5e234a1ac7f8 + - e127f190-8bc8-444a-8dd7-725cbdac73f1 status: 200 OK code: 200 - duration: 218.671791ms + duration: 171.204292ms - id: 37 request: proto: HTTP/1.1 @@ -1837,8 +1839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1846,20 +1848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 982 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:08.800624Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,10 +1869,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5c3a591-8496-4f64-933e-75e777c61daf + - fe0ef62c-1d7d-4f0f-ae94-7b4450e0cf85 status: 200 OK code: 200 - duration: 106.421875ms + duration: 163.969292ms - id: 38 request: proto: HTTP/1.1 @@ -1886,8 +1888,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1895,20 +1897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 466 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "1082" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:29 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,10 +1918,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 303ce687-0a80-400a-88ca-e48f3d96f088 + - 06cfc114-6508-4b8d-ab46-405c5640a41e status: 200 OK code: 200 - duration: 60.323458ms + duration: 132.143209ms - id: 39 request: proto: HTTP/1.1 @@ -1935,8 +1937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -1944,20 +1946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1054 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:11.615350Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "988" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,10 +1967,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c87300a-bb7c-4344-afdd-089f2abc969d + - 92c3a9fe-2255-487a-af77-8ea80075e42b status: 200 OK code: 200 - duration: 102.72125ms + duration: 143.447833ms - id: 40 request: proto: HTTP/1.1 @@ -1984,8 +1986,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -1993,20 +1995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 982 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:08.800624Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2014,10 +2016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820cbe26-4e12-482f-b5a0-4e87507f90da + - d7cd9604-b44f-4842-812d-2d4397852d70 status: 200 OK code: 200 - duration: 199.527958ms + duration: 159.741584ms - id: 41 request: proto: HTTP/1.1 @@ -2033,8 +2035,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: GET response: proto: HTTP/2.0 @@ -2042,20 +2044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "1091" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2063,10 +2065,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3a76111-caba-4a95-92de-79bea3ab2b62 + - 8185b6e1-84b4-4665-9331-3678ca7828e1 status: 200 OK code: 200 - duration: 29.056166ms + duration: 119.334834ms - id: 42 request: proto: HTTP/1.1 @@ -2082,8 +2084,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 method: GET response: proto: HTTP/2.0 @@ -2091,20 +2093,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1068 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:11.615350Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "988" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:33 GMT + - Mon, 30 Jun 2025 15:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2112,10 +2114,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84515da3-c10b-40ce-aec5-a3a430872dd5 + - 39566cc8-c4a0-40ab-906c-7940450eff80 status: 200 OK code: 200 - duration: 111.899833ms + duration: 265.709417ms - id: 43 request: proto: HTTP/1.1 @@ -2131,8 +2133,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2140,20 +2142,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 982 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:08.800624Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:33 GMT + - Mon, 30 Jun 2025 15:01:30 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2161,10 +2163,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90f7cfab-ef66-4892-b1ee-c9b07fcbcd15 + - d4bbfb3b-fdf3-4859-9f35-19cdd8da2465 status: 200 OK code: 200 - duration: 104.052292ms + duration: 124.832125ms - id: 44 request: proto: HTTP/1.1 @@ -2180,8 +2182,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2189,20 +2191,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 466 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "1082" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:33 GMT + - Mon, 30 Jun 2025 15:01:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2210,10 +2212,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8054df4e-d072-499d-8ab3-e65670bd17cf + - 21d0d04c-2be1-482c-bc04-6733dee2b8ea status: 200 OK code: 200 - duration: 39.036125ms + duration: 226.958917ms - id: 45 request: proto: HTTP/1.1 @@ -2229,8 +2231,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -2238,20 +2240,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1054 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "421" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:33 GMT + - Mon, 30 Jun 2025 15:01:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2259,10 +2261,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 184f3a17-7edd-4c7d-a5a8-b3d3cb6379ee + - af98845c-7a68-4c40-80e3-d9e7ccf40413 status: 200 OK code: 200 - duration: 497.255833ms + duration: 157.857959ms - id: 46 request: proto: HTTP/1.1 @@ -2278,8 +2280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: GET response: proto: HTTP/2.0 @@ -2287,20 +2289,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "1091" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2308,10 +2310,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 088a431c-d09d-4215-bb76-ae59c0e1128a + - c9cc227f-8689-4a5c-ab50-ebe9b6f37f4e status: 200 OK code: 200 - duration: 216.443958ms + duration: 26.91125ms - id: 47 request: proto: HTTP/1.1 @@ -2327,8 +2329,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 method: GET response: proto: HTTP/2.0 @@ -2336,20 +2338,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1068 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:33.380778Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "988" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2357,10 +2359,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 615dadc0-3b34-44eb-9629-f01bc396d03b + - d10401ef-c4d6-43c4-b1d4-2b65636f28ee status: 200 OK code: 200 - duration: 110.826542ms + duration: 125.236375ms - id: 48 request: proto: HTTP/1.1 @@ -2376,8 +2378,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2385,20 +2387,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 476 + content_length: 982 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990}],"total_count":1}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:08.800624Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "476" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2406,10 +2408,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d149b90c-4437-4409-ab70-a5a2f19f099a + - d068f8c4-d148-476e-a549-5c16d55cecdf status: 200 OK code: 200 - duration: 100.777667ms + duration: 130.705459ms - id: 49 request: proto: HTTP/1.1 @@ -2425,8 +2427,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2434,20 +2436,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 466 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838}],"total_count":1}' headers: Content-Length: - - "1082" + - "466" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2455,50 +2457,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c0f0b08-e7c3-4af3-8044-07e7eee4c45a + - b78548b0-7915-4bbd-9cbb-c65aefbdda53 status: 200 OK code: 200 - duration: 152.687375ms + duration: 136.309916ms - id: 50 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 121 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServerEnableVPCTwo","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 1054 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:34.868317Z","custom_routes_propagation_enabled":false,"id":"5537e9e4-bb3d-40bb-a599-4ee44773668a","is_default":false,"name":"TestAccServerEnableVPCTwo","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-05-26T15:30:34.868317Z"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "424" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2506,48 +2506,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aefd2737-cfd9-4480-9304-2d081a9af6e7 + - 07daf5d8-d008-48f2-980a-b1062b34a8a0 status: 200 OK code: 200 - duration: 127.127083ms + duration: 145.774958ms - id: 51 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 121 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccServerEnableVPCTwo","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5537e9e4-bb3d-40bb-a599-4ee44773668a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 413 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:34.868317Z","custom_routes_propagation_enabled":false,"id":"5537e9e4-bb3d-40bb-a599-4ee44773668a","is_default":false,"name":"TestAccServerEnableVPCTwo","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-05-26T15:30:34.868317Z"}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":false,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.548122Z"}' headers: Content-Length: - - "424" + - "413" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:34 GMT + - Mon, 30 Jun 2025 15:01:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2555,29 +2557,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f520c7b3-48b9-4994-82be-8efd09e8f80b + - 0b751a4d-da0b-4147-b0ae-977894e0e020 status: 200 OK code: 200 - duration: 72.107458ms + duration: 165.868125ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 167 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccServerEnableVPCNumbertwo","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -2585,20 +2587,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 412 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:35.016568Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:30:35.016568Z","id":"7789063b-39f5-4437-9100-d321c7998f3c","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"},{"created_at":"2025-05-26T15:30:35.016568Z","id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8fc3::/64","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}],"tags":[],"updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":true,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.684518Z"}' headers: Content-Length: - - "1100" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:35 GMT + - Mon, 30 Jun 2025 15:01:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,10 +2608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c6c50b7-5be3-46b1-a601-7e2c4f32ea31 + - a48c838d-1839-48a0-b505-84bccc797f46 status: 200 OK code: 200 - duration: 569.300334ms + duration: 125.8545ms - id: 53 request: proto: HTTP/1.1 @@ -2625,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd method: GET response: proto: HTTP/2.0 @@ -2634,20 +2636,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 412 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:35.016568Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:30:35.016568Z","id":"7789063b-39f5-4437-9100-d321c7998f3c","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"},{"created_at":"2025-05-26T15:30:35.016568Z","id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8fc3::/64","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}],"tags":[],"updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":true,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.684518Z"}' headers: Content-Length: - - "1100" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:35 GMT + - Mon, 30 Jun 2025 15:01:32 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2655,50 +2657,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56465001-fce1-43e8-98dd-162c43dab93d + - 5311fdc5-e1ae-46f9-bed1-1e26c5f96437 status: 200 OK code: 200 - duration: 335.318208ms + duration: 105.036ms - id: 54 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 209 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: '{"name":"TestAccServerEnableVPCNumbertwo","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 951 + content_length: 1078 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-05-26T15:30:36.040968Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:01:32.951449Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d269f9d3-f55f-4b3d-9f25-693442650dae","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:01:32.951449Z","id":"e822fd61-9d12-4804-9c41-5cc8e859cf51","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.152.0/22","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"},{"created_at":"2025-06-30T15:01:32.951449Z","id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:55cc::/64","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}],"tags":[],"updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}' headers: Content-Length: - - "951" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:36 GMT + - Mon, 30 Jun 2025 15:01:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,10 +2708,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12ad362f-04de-45cf-998b-f4197bfa19e7 + - 153b67cb-ee4f-43b4-a62c-9050dc6529b7 status: 200 OK code: 200 - duration: 165.247375ms + duration: 658.973125ms - id: 55 request: proto: HTTP/1.1 @@ -2725,8 +2727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d269f9d3-f55f-4b3d-9f25-693442650dae method: GET response: proto: HTTP/2.0 @@ -2734,20 +2736,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1078 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:36.040968Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:01:32.951449Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d269f9d3-f55f-4b3d-9f25-693442650dae","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:01:32.951449Z","id":"e822fd61-9d12-4804-9c41-5cc8e859cf51","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.152.0/22","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"},{"created_at":"2025-06-30T15:01:32.951449Z","id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:55cc::/64","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}],"tags":[],"updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}' headers: Content-Length: - - "988" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:36 GMT + - Mon, 30 Jun 2025 15:01:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,50 +2757,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f08750c-6df5-473b-9807-1b2df7148823 + - b8665ec0-f231-46aa-946d-594e893ae257 status: 200 OK code: 200 - duration: 116.128416ms + duration: 27.048ms - id: 56 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 198 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"per_private_network_ipam_ip_ids":{"5036b079-9b17-4c6b-9ff8-33650679473a":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c":[]}}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603/private-networks - method: PUT + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 891 + content_length: 945 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}]}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-06-30T15:01:33.664696Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "891" + - "945" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:37 GMT + - Mon, 30 Jun 2025 15:01:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2806,10 +2808,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ebc4094-35a5-4418-a795-699c3cb7de8f + - fd580a7c-444c-43f0-ac0b-e8b454210b6c status: 200 OK code: 200 - duration: 1.03156575s + duration: 175.472833ms - id: 57 request: proto: HTTP/1.1 @@ -2825,8 +2827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2834,20 +2836,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 908 + content_length: 982 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:33.664696Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "908" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:37 GMT + - Mon, 30 Jun 2025 15:01:33 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2855,48 +2857,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 673594a0-00bf-4365-831a-06d1c20ff42e + - bfa6ea9b-2645-47b6-a3c9-3febb777e043 status: 200 OK code: 200 - duration: 110.466833ms + duration: 110.507458ms - id: 58 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 198 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"per_private_network_ipam_ip_ids":{"d210e5b0-6aed-433d-9eb9-f34b08b601c3":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"d269f9d3-f55f-4b3d-9f25-693442650dae":[]}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d/private-networks + method: PUT response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 908 + content_length: 872 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}]}' headers: Content-Length: - - "908" + - "872" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:42 GMT + - Mon, 30 Jun 2025 15:01:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2904,10 +2908,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a581cb80-415c-4681-9819-ea3e816591b9 + - d9d9cfdc-98bc-43f2-941f-c18985807656 status: 200 OK code: 200 - duration: 120.429083ms + duration: 3.303597791s - id: 59 request: proto: HTTP/1.1 @@ -2923,8 +2927,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2932,20 +2936,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 908 + content_length: 888 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attaching","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "908" + - "888" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:01:37 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2953,10 +2957,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3959541f-2a45-44ab-9390-3d2c6e6d4b5d + - 9bb62a86-73c4-4023-9d14-98ffab70fc45 status: 200 OK code: 200 - duration: 106.3865ms + duration: 119.688083ms - id: 60 request: proto: HTTP/1.1 @@ -2972,8 +2976,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -2981,20 +2985,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 907 + content_length: 888 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "907" + - "888" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:52 GMT + - Mon, 30 Jun 2025 15:01:42 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3002,10 +3006,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b1a4611-8fa0-469a-acc8-e4c1dd98582b + - 08b37c84-160a-4c48-844c-551f03f3c620 status: 200 OK code: 200 - duration: 113.69225ms + duration: 134.9625ms - id: 61 request: proto: HTTP/1.1 @@ -3021,8 +3025,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3030,20 +3034,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 888 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:43.406520Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attaching","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "988" + - "888" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:52 GMT + - Mon, 30 Jun 2025 15:01:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3051,10 +3055,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddf7259c-c85b-4262-a360-04e61643055c + - 2fca57ce-2485-43f3-94cd-7c25c0bd11fd status: 200 OK code: 200 - duration: 116.182375ms + duration: 160.556541ms - id: 62 request: proto: HTTP/1.1 @@ -3070,8 +3074,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3079,20 +3083,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 907 + content_length: 887 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "907" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:52 GMT + - Mon, 30 Jun 2025 15:01:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3100,10 +3104,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05a3c786-276d-4a14-a1f1-e2feafeb5782 + - ec1122a7-6da2-4a2a-9943-80c48e3ed242 status: 200 OK code: 200 - duration: 125.750333ms + duration: 131.8005ms - id: 63 request: proto: HTTP/1.1 @@ -3119,8 +3123,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3128,20 +3132,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 982 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:44.820059Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "1082" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3149,10 +3153,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dfe951f-98c8-4f6d-9ee4-7621b22a5abf + - 37171ba1-3f31-4105-8d9a-8f85b972e4b2 status: 200 OK code: 200 - duration: 122.041083ms + duration: 175.682042ms - id: 64 request: proto: HTTP/1.1 @@ -3168,8 +3172,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3177,20 +3181,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 887 uncompressed: false - body: '{"ips":[{"address":"172.16.8.2/22","created_at":"2025-05-26T15:30:36.898338Z","id":"65bb12cc-1b5a-4297-846a-089dc40ac805","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"7789063b-39f5-4437-9100-d321c7998f3c"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null},{"address":"fd5f:519c:6d46:8fc3:7149:bab7:c9e9:876c/64","created_at":"2025-05-26T15:30:36.898338Z","id":"f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "1083" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3198,10 +3202,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15951cfd-cc4e-48dc-8361-9c90cc28d7aa + - ad0635a3-c4b0-43b6-97f4-c366aad4a3ef status: 200 OK code: 200 - duration: 48.310667ms + duration: 368.322542ms - id: 65 request: proto: HTTP/1.1 @@ -3217,8 +3221,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -3226,20 +3230,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1054 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:43.406520Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "988" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3247,10 +3251,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 379fb6aa-14af-43ef-8841-6a3353e96293 + - 82ea6539-e695-433d-bc8f-b65aa6299a8e status: 200 OK code: 200 - duration: 101.768167ms + duration: 42.708541ms - id: 66 request: proto: HTTP/1.1 @@ -3266,8 +3270,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5537e9e4-bb3d-40bb-a599-4ee44773668a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d269f9d3-f55f-4b3d-9f25-693442650dae&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -3275,20 +3279,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:34.868317Z","custom_routes_propagation_enabled":false,"id":"5537e9e4-bb3d-40bb-a599-4ee44773668a","is_default":false,"name":"TestAccServerEnableVPCTwo","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-05-26T15:30:34.868317Z"}' + body: '{"ips":[{"address":"172.16.152.2/22","created_at":"2025-06-30T15:01:35.676912Z","id":"66156593-629e-4c62-a12a-1f33b9e9c752","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"e822fd61-9d12-4804-9c41-5cc8e859cf51"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null},{"address":"fd5f:519c:6d46:55cc:8f12:19a1:cb77:b1bd/64","created_at":"2025-06-30T15:01:35.676912Z","id":"53a6e901-3569-4721-a903-99982ae3928a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null}],"total_count":2}' headers: Content-Length: - - "424" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3296,10 +3300,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e84739a-e797-42cb-a27c-6f1d80141682 + - 6ec70563-fae3-4a1b-8612-c1c9d0afff9b status: 200 OK code: 200 - duration: 103.935666ms + duration: 55.6245ms - id: 67 request: proto: HTTP/1.1 @@ -3315,8 +3319,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3324,20 +3328,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 982 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:44.820059Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "421" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3345,10 +3349,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b13ea53-e93c-4397-9cd7-83c7318f5c6b + - 810836a9-cccd-4bbe-8ef4-43995d99837a status: 200 OK code: 200 - duration: 116.724916ms + duration: 150.442583ms - id: 68 request: proto: HTTP/1.1 @@ -3364,8 +3368,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: GET response: proto: HTTP/2.0 @@ -3373,20 +3377,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:35.016568Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:30:35.016568Z","id":"7789063b-39f5-4437-9100-d321c7998f3c","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"},{"created_at":"2025-05-26T15:30:35.016568Z","id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8fc3::/64","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}],"tags":[],"updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "1100" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3394,10 +3398,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8f663ef-8de4-48bb-95ea-9247377c50c6 + - 846a0312-767f-4aaf-9528-cf535fbc2e8d status: 200 OK code: 200 - duration: 135.763333ms + duration: 29.621125ms - id: 69 request: proto: HTTP/1.1 @@ -3413,8 +3417,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd method: GET response: proto: HTTP/2.0 @@ -3422,20 +3426,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 412 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":true,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.684518Z"}' headers: Content-Length: - - "1091" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3443,10 +3447,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4e37250-4bed-4374-8ce6-c8f3bdd78499 + - 361520a9-f614-4312-937a-941a3f015eea status: 200 OK code: 200 - duration: 124.357791ms + duration: 133.424375ms - id: 70 request: proto: HTTP/1.1 @@ -3462,8 +3466,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 method: GET response: proto: HTTP/2.0 @@ -3471,20 +3475,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1068 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:53.429639Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "988" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3492,10 +3496,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aaec0dd-b0a9-4097-8396-1b3f58faf4b6 + - 37c983d7-affb-4dfe-a5ec-776fd48b596c status: 200 OK code: 200 - duration: 96.798375ms + duration: 121.934875ms - id: 71 request: proto: HTTP/1.1 @@ -3511,8 +3515,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d269f9d3-f55f-4b3d-9f25-693442650dae method: GET response: proto: HTTP/2.0 @@ -3520,20 +3524,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 907 + content_length: 1078 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:01:32.951449Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d269f9d3-f55f-4b3d-9f25-693442650dae","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:01:32.951449Z","id":"e822fd61-9d12-4804-9c41-5cc8e859cf51","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.152.0/22","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"},{"created_at":"2025-06-30T15:01:32.951449Z","id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:55cc::/64","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}],"tags":[],"updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}' headers: Content-Length: - - "907" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3541,10 +3545,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cb57f90-f3bf-42e0-a84a-617452325061 + - 6f6a43c4-46e0-453e-a567-b3c2dc765101 status: 200 OK code: 200 - duration: 146.998959ms + duration: 29.988625ms - id: 72 request: proto: HTTP/1.1 @@ -3560,8 +3564,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3569,20 +3573,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 982 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:44.820059Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "1082" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3590,10 +3594,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2a5a2ea-3d14-49d0-b947-541bcf50d052 + - 03c1d0a1-e7a8-4838-9549-97ce01d479f0 status: 200 OK code: 200 - duration: 53.124958ms + duration: 110.358209ms - id: 73 request: proto: HTTP/1.1 @@ -3609,8 +3613,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3618,20 +3622,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 887 uncompressed: false - body: '{"ips":[{"address":"172.16.8.2/22","created_at":"2025-05-26T15:30:36.898338Z","id":"65bb12cc-1b5a-4297-846a-089dc40ac805","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"7789063b-39f5-4437-9100-d321c7998f3c"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null},{"address":"fd5f:519c:6d46:8fc3:7149:bab7:c9e9:876c/64","created_at":"2025-05-26T15:30:36.898338Z","id":"f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "1083" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3639,10 +3643,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c78ab3a-7709-4856-94fb-0d166c1c1022 + - 72368c88-730f-4e1d-ae8a-380ab431fa0c status: 200 OK code: 200 - duration: 43.025833ms + duration: 119.702416ms - id: 74 request: proto: HTTP/1.1 @@ -3658,8 +3662,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5537e9e4-bb3d-40bb-a599-4ee44773668a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -3667,20 +3671,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 1054 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:34.868317Z","custom_routes_propagation_enabled":false,"id":"5537e9e4-bb3d-40bb-a599-4ee44773668a","is_default":false,"name":"TestAccServerEnableVPCTwo","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-05-26T15:30:34.868317Z"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "424" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3688,10 +3692,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acdbcbc0-79ce-4f2e-add4-9014265c6165 + - 69870f0d-235c-4632-ae02-f7803ab8b146 status: 200 OK code: 200 - duration: 23.139625ms + duration: 48.993458ms - id: 75 request: proto: HTTP/1.1 @@ -3707,8 +3711,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d269f9d3-f55f-4b3d-9f25-693442650dae&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -3716,20 +3720,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"ips":[{"address":"172.16.152.2/22","created_at":"2025-06-30T15:01:35.676912Z","id":"66156593-629e-4c62-a12a-1f33b9e9c752","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"e822fd61-9d12-4804-9c41-5cc8e859cf51"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null},{"address":"fd5f:519c:6d46:55cc:8f12:19a1:cb77:b1bd/64","created_at":"2025-06-30T15:01:35.676912Z","id":"53a6e901-3569-4721-a903-99982ae3928a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null}],"total_count":2}' headers: Content-Length: - - "421" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3737,10 +3741,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fa6e390-fbff-4107-8de7-1de069d7d96a + - 31914a5e-66fa-4cbb-8d7d-d97a45d5ffdc status: 200 OK code: 200 - duration: 23.18125ms + duration: 79.422125ms - id: 76 request: proto: HTTP/1.1 @@ -3756,8 +3760,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd method: GET response: proto: HTTP/2.0 @@ -3765,20 +3769,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 412 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:35.016568Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:30:35.016568Z","id":"7789063b-39f5-4437-9100-d321c7998f3c","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"},{"created_at":"2025-05-26T15:30:35.016568Z","id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8fc3::/64","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}],"tags":[],"updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":true,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.684518Z"}' headers: Content-Length: - - "1100" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3786,10 +3790,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1daa507e-0502-4b1b-a881-4f5dacab9cdf + - f6a1a784-dd80-4309-b070-84531a2e5a7f status: 200 OK code: 200 - duration: 21.080458ms + duration: 30.9565ms - id: 77 request: proto: HTTP/1.1 @@ -3805,8 +3809,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: GET response: proto: HTTP/2.0 @@ -3814,20 +3818,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 409 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "1091" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3835,10 +3839,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0e256d7-da74-4009-9ac3-4b67b775a01a + - 578b191d-cb30-4ca0-bc3e-a5776c6e1a71 status: 200 OK code: 200 - duration: 28.794125ms + duration: 31.427ms - id: 78 request: proto: HTTP/1.1 @@ -3854,8 +3858,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d269f9d3-f55f-4b3d-9f25-693442650dae method: GET response: proto: HTTP/2.0 @@ -3863,20 +3867,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 988 + content_length: 1078 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:53.429639Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:01:32.951449Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d269f9d3-f55f-4b3d-9f25-693442650dae","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:01:32.951449Z","id":"e822fd61-9d12-4804-9c41-5cc8e859cf51","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.152.0/22","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"},{"created_at":"2025-06-30T15:01:32.951449Z","id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:55cc::/64","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}],"tags":[],"updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}' headers: Content-Length: - - "988" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3884,10 +3888,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a245fec1-88fb-4b94-a972-80eec3153921 + - 6d292ba8-73a3-4868-b83a-6c3ad14f54dd status: 200 OK code: 200 - duration: 125.755334ms + duration: 23.610541ms - id: 79 request: proto: HTTP/1.1 @@ -3903,8 +3907,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 method: GET response: proto: HTTP/2.0 @@ -3912,20 +3916,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 907 + content_length: 1068 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:15.390350Z","id":"999571a4-5efa-435d-885f-95dc23498735","ipam_ip_ids":["0b3c5a38-a756-4364-803a-73ed06b2138c","f06abd3d-e214-4c4e-9cc7-e15a61217bfa"],"private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:15.390350Z","vlan":2990},{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":["65bb12cc-1b5a-4297-846a-089dc40ac805","f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d"],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"attached","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":2}' + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' headers: Content-Length: - - "907" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3933,10 +3937,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7919175-4466-4ebf-a3ca-9976b5008791 + - 3eeaaa97-f28d-4e30-8a96-8bf052de7166 status: 200 OK code: 200 - duration: 124.668417ms + duration: 28.55475ms - id: 80 request: proto: HTTP/1.1 @@ -3952,8 +3956,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5036b079-9b17-4c6b-9ff8-33650679473a&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -3961,20 +3965,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 982 uncompressed: false - body: '{"ips":[{"address":"172.16.4.2/22","created_at":"2025-05-26T15:30:16.047702Z","id":"0b3c5a38-a756-4364-803a-73ed06b2138c","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"6d96854b-f317-4763-8880-f1bf0d214601"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null},{"address":"fd5f:519c:6d46:e65c:d77d:4b15:99c:9579/64","created_at":"2025-05-26T15:30:16.047702Z","id":"f06abd3d-e214-4c4e-9cc7-e15a61217bfa","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"999571a4-5efa-435d-885f-95dc23498735","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c"},"tags":[],"updated_at":"2025-05-26T15:30:16.047702Z","zone":null}],"total_count":2}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:44.820059Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_enabled","zone":"fr-par-1"}' headers: Content-Length: - - "1082" + - "982" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3982,10 +3986,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 565475f6-2f14-4f11-a484-47556abfbb83 + - e27e6f8e-5f16-4087-9b9d-a117fb723aa3 status: 200 OK code: 200 - duration: 54.804667ms + duration: 136.68725ms - id: 81 request: proto: HTTP/1.1 @@ -4001,8 +4005,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4010,20 +4014,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 887 uncompressed: false - body: '{"ips":[{"address":"172.16.8.2/22","created_at":"2025-05-26T15:30:36.898338Z","id":"65bb12cc-1b5a-4297-846a-089dc40ac805","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"7789063b-39f5-4437-9100-d321c7998f3c"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null},{"address":"fd5f:519c:6d46:8fc3:7149:bab7:c9e9:876c/64","created_at":"2025-05-26T15:30:36.898338Z","id":"f45eb1e6-6f78-4ccc-8b82-2ed9ccf9ad4d","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"db0368ab-a507-4826-b52e-e01bfa712a11","mac_address":"18:4A:53:04:52:15","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24"},"tags":[],"updated_at":"2025-05-26T15:30:36.898338Z","zone":null}],"total_count":2}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:10.170855Z","id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","ipam_ip_ids":["1105f730-c04d-4917-9002-b07577cba096","d3d24731-3668-461d-84f0-e153433960e0"],"private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:10.170855Z","vlan":2838},{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":["66156593-629e-4c62-a12a-1f33b9e9c752","53a6e901-3569-4721-a903-99982ae3928a"],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"attached","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":2}' headers: Content-Length: - - "1083" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:54 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4031,50 +4035,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d46c5436-b85a-47ab-8b6d-a3a91c5808fa + - eb2fafa1-11c6-49f3-9340-535c35604654 status: 200 OK code: 200 - duration: 112.403666ms + duration: 127.336709ms - id: 82 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"enable_vpc":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d210e5b0-6aed-433d-9eb9-f34b08b601c3&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 952 + content_length: 1054 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-05-26T15:30:55.049215Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:01:12.210455Z","id":"1105f730-c04d-4917-9002-b07577cba096","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"67b2d220-17df-4aa5-b4b9-9b34559257fc"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null},{"address":"fd5f:519c:6d46:6934:ad6e:a85b:4c2b:1ae3/64","created_at":"2025-06-30T15:01:12.210455Z","id":"d3d24731-3668-461d-84f0-e153433960e0","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"bad557ed-6941-4a6f-99f1-a27b309e9d96","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269"},"tags":[],"updated_at":"2025-06-30T15:01:12.210455Z","zone":null}],"total_count":2}' headers: Content-Length: - - "952" + - "1054" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:55 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4082,10 +4084,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 007e8335-c909-4434-8202-6456af41c427 + - e44568d8-ba2e-480d-be35-3d1691be374c status: 200 OK code: 200 - duration: 204.119ms + duration: 45.446917ms - id: 83 request: proto: HTTP/1.1 @@ -4101,8 +4103,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d269f9d3-f55f-4b3d-9f25-693442650dae&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_type=apple_silicon_private_nic method: GET response: proto: HTTP/2.0 @@ -4110,20 +4112,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 1055 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:55.049215Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.152.2/22","created_at":"2025-06-30T15:01:35.676912Z","id":"66156593-629e-4c62-a12a-1f33b9e9c752","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"e822fd61-9d12-4804-9c41-5cc8e859cf51"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null},{"address":"fd5f:519c:6d46:55cc:8f12:19a1:cb77:b1bd/64","created_at":"2025-06-30T15:01:35.676912Z","id":"53a6e901-3569-4721-a903-99982ae3928a","is_ipv6":true,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","mac_address":"18:4A:53:07:4B:3C","name":"TestAccServerEnableVPC","type":"apple_silicon_private_nic"},"reverses":[],"source":{"subnet_id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a"},"tags":[],"updated_at":"2025-06-30T15:01:35.676912Z","zone":null}],"total_count":2}' headers: Content-Length: - - "989" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:30:55 GMT + - Mon, 30 Jun 2025 15:01:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4131,48 +4133,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0327cec-e7cb-49c3-8e7d-5cbcdafbab00 + - 89470c85-6e3e-46e2-9253-4b6d21e14b20 status: 200 OK code: 200 - duration: 119.145ms + duration: 142.082375ms - id: 84 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"enable_vpc":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 946 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:30:55.049215Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"\u003csealed\u003e","type":"M2-M","updated_at":"2025-06-30T15:01:55.333640Z","vnc_port":59010,"vnc_url":"\u003csealed\u003e","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "946" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:00 GMT + - Mon, 30 Jun 2025 15:01:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4180,10 +4184,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 334e79b4-7d3e-46f1-a808-c1f4774e8e86 + - f019b1b0-2bf1-406d-86be-448043c397a1 status: 200 OK code: 200 - duration: 136.1615ms + duration: 201.732459ms - id: 85 request: proto: HTTP/1.1 @@ -4199,8 +4203,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4208,20 +4212,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:03.456996Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:55.333640Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:05 GMT + - Mon, 30 Jun 2025 15:01:55 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4229,10 +4233,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e9dfcc8-d034-446b-8704-bc7cb1eab0ea + - fa35db68-f25d-4d3b-a5cb-b6991c75a2ac status: 200 OK code: 200 - duration: 133.475459ms + duration: 145.943958ms - id: 86 request: proto: HTTP/1.1 @@ -4248,8 +4252,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4257,20 +4261,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:03.456996Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:01:55.333640Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4278,10 +4282,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e89bba-1d1f-4f04-96be-3c3221420c8a + - 828dfc53-614d-4109-a7b2-c097ee51d39c status: 200 OK code: 200 - duration: 147.817291ms + duration: 123.091416ms - id: 87 request: proto: HTTP/1.1 @@ -4297,8 +4301,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4306,20 +4310,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:13.492494Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:04.866859Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:15 GMT + - Mon, 30 Jun 2025 15:02:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4327,10 +4331,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84efe50a-7065-4294-93a7-608b64e80756 + - 7550fc4d-62bc-426e-8914-bf5fce27101d status: 200 OK code: 200 - duration: 126.843417ms + duration: 148.4095ms - id: 88 request: proto: HTTP/1.1 @@ -4346,8 +4350,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4355,20 +4359,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:13.492494Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:04.866859Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4376,10 +4380,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb212ff6-e116-4bbe-9c55-4d976145dc71 + - 35f1fc0f-2afb-453c-b000-aaf0ca663abf status: 200 OK code: 200 - duration: 163.411792ms + duration: 120.384833ms - id: 89 request: proto: HTTP/1.1 @@ -4395,8 +4399,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4404,20 +4408,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:23.521121Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:14.887600Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:26 GMT + - Mon, 30 Jun 2025 15:02:16 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4425,10 +4429,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6ae2a35-8a0f-40e4-9801-99d081aab78e + - 2ba8615f-900e-4ba5-83e3-c38f618ab874 status: 200 OK code: 200 - duration: 133.432625ms + duration: 135.406791ms - id: 90 request: proto: HTTP/1.1 @@ -4444,8 +4448,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4453,20 +4457,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 399 + content_length: 983 uncompressed: false - body: '{"server_private_networks":[{"created_at":"2025-05-26T15:30:36.584100Z","id":"db0368ab-a507-4826-b52e-e01bfa712a11","ipam_ip_ids":[],"private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","status":"detaching","updated_at":"2025-05-26T15:30:36.584100Z","vlan":2770}],"total_count":1}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:14.887600Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "399" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:26 GMT + - Mon, 30 Jun 2025 15:02:21 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4474,10 +4478,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2761c99a-5565-4dcd-914a-f8fc120387e6 + - 876be56f-6f47-41ac-aa3a-56930d185c9e status: 200 OK code: 200 - duration: 108.836583ms + duration: 133.913625ms - id: 91 request: proto: HTTP/1.1 @@ -4493,8 +4497,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4502,20 +4506,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47 + content_length: 983 uncompressed: false - body: '{"server_private_networks":[],"total_count":0}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:24.912931Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "47" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:26 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4523,10 +4527,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4063eba6-2fa5-41c0-87c6-fac744589c89 + - 2354f56a-d980-4afa-9a39-cd78505a1eeb status: 200 OK code: 200 - duration: 103.076458ms + duration: 123.546458ms - id: 92 request: proto: HTTP/1.1 @@ -4542,8 +4546,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4551,20 +4555,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:23.521121Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:24.912931Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:31 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4572,10 +4576,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b92d775a-c911-4bc8-b2e8-a0e92d27cbdf + - bf7557bb-60f4-487f-acd1-7f74004727d3 status: 200 OK code: 200 - duration: 209.041833ms + duration: 126.302916ms - id: 93 request: proto: HTTP/1.1 @@ -4591,8 +4595,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4600,20 +4604,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47 + content_length: 983 uncompressed: false - body: '{"server_private_networks":[],"total_count":0}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:34.934095Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_updating","zone":"fr-par-1"}' headers: Content-Length: - - "47" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:36 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4621,10 +4625,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05c9f610-e3f5-4577-bbea-3ae71af63337 + - 1c5e7184-e888-43d3-8dea-8a89a0bd9606 status: 200 OK code: 200 - duration: 107.635834ms + duration: 127.219458ms - id: 94 request: proto: HTTP/1.1 @@ -4640,8 +4644,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4649,20 +4653,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:23.521121Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:34.934095Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4670,10 +4674,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - facad841-99ab-4136-9dac-a304c2a17a24 + - da274b1a-371b-4e33-9521-0b77916d170d status: 200 OK code: 200 - duration: 127.853208ms + duration: 139.637958ms - id: 95 request: proto: HTTP/1.1 @@ -4689,8 +4693,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4698,20 +4702,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 390 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.442472Z","custom_routes_propagation_enabled":false,"id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9","is_default":false,"name":"TestAccServerEnableVPC","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-05-26T15:28:05.442472Z"}' + body: '{"server_private_networks":[{"created_at":"2025-06-30T15:01:34.193516Z","id":"40f108bd-708c-4e2e-a4ce-d9bd0fa5cfa1","ipam_ip_ids":[],"private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","server_id":"80eef84c-6158-4512-9671-5a580af5404d","status":"detaching","updated_at":"2025-06-30T15:01:34.193516Z","vlan":1773}],"total_count":1}' headers: Content-Length: - - "421" + - "390" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:41 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4719,10 +4723,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a435d97f-571c-4b10-94a9-de9f0ab20e45 + - 1d40fed9-d691-4912-8323-b105d4e83d33 status: 200 OK code: 200 - duration: 25.194042ms + duration: 142.076375ms - id: 96 request: proto: HTTP/1.1 @@ -4738,8 +4742,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5537e9e4-bb3d-40bb-a599-4ee44773668a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4747,20 +4751,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 46 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:34.868317Z","custom_routes_propagation_enabled":false,"id":"5537e9e4-bb3d-40bb-a599-4ee44773668a","is_default":false,"name":"TestAccServerEnableVPCTwo","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-05-26T15:30:34.868317Z"}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "424" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4768,10 +4772,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a4b4bab-6f65-4736-b72a-2889a8fb02fd + - 76311db7-26fc-4a44-a479-32b3025ab6e6 status: 200 OK code: 200 - duration: 30.569667ms + duration: 133.707459ms - id: 97 request: proto: HTTP/1.1 @@ -4787,8 +4791,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4796,20 +4800,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 983 uncompressed: false - body: '{"created_at":"2025-05-26T15:30:35.016568Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:30:35.016568Z","id":"7789063b-39f5-4437-9100-d321c7998f3c","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"},{"created_at":"2025-05-26T15:30:35.016568Z","id":"5ffb688a-cd93-49e8-83cf-e8e03cec0b24","private_network_id":"f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:8fc3::/64","updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}],"tags":[],"updated_at":"2025-05-26T15:30:35.016568Z","vpc_id":"5537e9e4-bb3d-40bb-a599-4ee44773668a"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:44.956852Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' headers: Content-Length: - - "1100" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4817,10 +4821,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d76a9ac9-6932-43cc-845a-20b90edb84be + - 59c142dc-3927-4350-a8ce-4ba61bdecbc4 status: 200 OK code: 200 - duration: 23.575834ms + duration: 121.208375ms - id: 98 request: proto: HTTP/1.1 @@ -4836,8 +4840,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4845,20 +4849,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 46 uncompressed: false - body: '{"created_at":"2025-05-26T15:28:05.641328Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5036b079-9b17-4c6b-9ff8-33650679473a","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-05-26T15:28:05.641328Z","id":"6d96854b-f317-4763-8880-f1bf0d214601","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.4.0/22","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"},{"created_at":"2025-05-26T15:28:05.641328Z","id":"5ca1cff8-0abb-43c7-9ecc-53de7fa5266c","private_network_id":"5036b079-9b17-4c6b-9ff8-33650679473a","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:e65c::/64","updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}],"tags":[],"updated_at":"2025-05-26T15:28:05.641328Z","vpc_id":"d505193c-3cd6-41e3-aab6-a306e8d0d5b9"}' + body: '{"server_private_networks":[],"total_count":0}' headers: Content-Length: - - "1091" + - "46" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4866,10 +4870,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61fea488-ec76-4799-b21c-e90c964b1d6c + - 42609783-fe2a-4937-9c73-81f2e95995fa status: 200 OK code: 200 - duration: 34.248ms + duration: 108.213125ms - id: 99 request: proto: HTTP/1.1 @@ -4885,8 +4889,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -4894,20 +4898,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 989 + content_length: 983 uncompressed: false - body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-05-26T15:28:06.381429Z","deletable_at":"2025-05-26T15:28:06.381429Z","deletion_scheduled":false,"delivered":true,"id":"9c41b3ad-aa1c-4b44-960e-1c5553e03603","ip":"62.210.166.78","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","ssh_username":"m1","status":"ready","sudo_password":"KKLbL7fr1Huf","type":"M2-M","updated_at":"2025-05-26T15:31:23.521121Z","vnc_port":59010,"vnc_url":"vnc://m1:KKLbL7fr1Huf@62.210.166.78:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:44.956852Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' headers: Content-Length: - - "989" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4915,10 +4919,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b7f4e64-06ac-4c51-be09-938f47af20ee + - d08c7016-444f-407e-b295-7960628ebbdd status: 200 OK code: 200 - duration: 147.288041ms + duration: 122.929375ms - id: 100 request: proto: HTTP/1.1 @@ -4934,8 +4938,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd method: GET response: proto: HTTP/2.0 @@ -4943,20 +4947,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47 + content_length: 412 uncompressed: false - body: '{"server_private_networks":[],"total_count":0}' + body: '{"created_at":"2025-06-30T15:01:32.548122Z","custom_routes_propagation_enabled":true,"id":"fea89447-3681-4a84-9cb7-21409ebb19dd","is_default":false,"name":"TestAccServerEnableVPCTwo","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-06-30T15:01:32.684518Z"}' headers: Content-Length: - - "47" + - "412" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4964,10 +4968,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4bea46f-926e-4af9-b61c-8678f8e206b9 + - 0c433bb8-e0ba-4d7c-a575-bb7e9b172940 status: 200 OK code: 200 - duration: 122.973375ms + duration: 30.474584ms - id: 101 request: proto: HTTP/1.1 @@ -4983,8 +4987,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: GET response: proto: HTTP/2.0 @@ -4992,20 +4996,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47 + content_length: 409 uncompressed: false - body: '{"server_private_networks":[],"total_count":0}' + body: '{"created_at":"2025-06-30T14:58:58.518733Z","custom_routes_propagation_enabled":true,"id":"e0a88e3a-01e1-4798-90c1-85d865c74e77","is_default":false,"name":"TestAccServerEnableVPC","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-06-30T14:58:59.288769Z"}' headers: Content-Length: - - "47" + - "409" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5013,10 +5017,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f71153fc-d0e1-42f1-b951-1bf388c9fa65 + - 93ca95d6-af7d-4b02-aa39-b6e37a255499 status: 200 OK code: 200 - duration: 109.10225ms + duration: 41.316208ms - id: 102 request: proto: HTTP/1.1 @@ -5032,8 +5036,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -5041,20 +5045,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 47 + content_length: 983 uncompressed: false - body: '{"server_private_networks":[],"total_count":0}' + body: '{"commitment":{"cancelled":false,"type":"none"},"created_at":"2025-06-30T14:59:00.738298Z","deletable_at":"2025-06-30T14:59:00.738298Z","deletion_scheduled":false,"delivered":true,"id":"80eef84c-6158-4512-9671-5a580af5404d","ip":"62.210.166.96","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","os":{"compatible_server_types":["M1-M","M2-M","M2-L","M4-S"],"family":"Sequoia","id":"367b9c18-d57f-4c9a-bcea-9e1fda66fc70","image_url":"https://scw-apple-silicon.s3.fr-par.scw.cloud/scw-console/os/macos-sequoia.png","is_beta":false,"label":"macOS Sequoia 15.2","name":"macos-sequoia-15.2","version":"15.2","xcode_version":"16"},"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","public_bandwidth_bps":0,"ssh_username":"m1","status":"ready","sudo_password":"TThcrXXUYkNV","type":"M2-M","updated_at":"2025-06-30T15:02:44.956852Z","vnc_port":59010,"vnc_url":"vnc://m1:TThcrXXUYkNV@62.210.166.96:59010","vpc_status":"vpc_disabled","zone":"fr-par-1"}' headers: Content-Length: - - "47" + - "983" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5062,10 +5066,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 515df1e2-d6ad-4896-9dd8-67fa1d63f524 + - f6779227-dd81-4977-a071-42131fc55c83 status: 200 OK code: 200 - duration: 133.378792ms + duration: 126.687458ms - id: 103 request: proto: HTTP/1.1 @@ -5081,8 +5085,253 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d269f9d3-f55f-4b3d-9f25-693442650dae + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1078 + uncompressed: false + body: '{"created_at":"2025-06-30T15:01:32.951449Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d269f9d3-f55f-4b3d-9f25-693442650dae","name":"TestAccServerEnableVPCNumbertwo","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:01:32.951449Z","id":"e822fd61-9d12-4804-9c41-5cc8e859cf51","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.152.0/22","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"},{"created_at":"2025-06-30T15:01:32.951449Z","id":"ef54c2e3-358e-4288-8899-75aa0ddb8e0a","private_network_id":"d269f9d3-f55f-4b3d-9f25-693442650dae","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:55cc::/64","updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}],"tags":[],"updated_at":"2025-06-30T15:01:32.951449Z","vpc_id":"fea89447-3681-4a84-9cb7-21409ebb19dd"}' + headers: + Content-Length: + - "1078" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7ce42d5e-0654-40ae-afdf-1a2fffcef923 + status: 200 OK + code: 200 + duration: 122.027666ms + - id: 104 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1068 + uncompressed: false + body: '{"created_at":"2025-06-30T14:58:59.571907Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","name":"TestAccServerEnableVPC","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:58:59.571907Z","id":"67b2d220-17df-4aa5-b4b9-9b34559257fc","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"},{"created_at":"2025-06-30T14:58:59.571907Z","id":"86a5bd7b-1e82-4b7f-b97b-f48db8bcd269","private_network_id":"d210e5b0-6aed-433d-9eb9-f34b08b601c3","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:6934::/64","updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}],"tags":[],"updated_at":"2025-06-30T14:58:59.571907Z","vpc_id":"e0a88e3a-01e1-4798-90c1-85d865c74e77"}' + headers: + Content-Length: + - "1068" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5b8ddde5-02ec-4d87-a43f-b507779b7ffd + status: 200 OK + code: 200 + duration: 118.4525ms + - id: 105 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 46 + uncompressed: false + body: '{"server_private_networks":[],"total_count":0}' + headers: + Content-Length: + - "46" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:47 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f61328fc-b191-443b-aeee-fe6d734e85c2 + status: 200 OK + code: 200 + duration: 128.914791ms + - id: 106 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 46 + uncompressed: false + body: '{"server_private_networks":[],"total_count":0}' + headers: + Content-Length: + - "46" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4cc5fb51-2756-4221-8d2a-6e96ac6301ad + status: 200 OK + code: 200 + duration: 127.817542ms + - id: 107 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/server-private-networks?order_by=created_at_asc&server_id=80eef84c-6158-4512-9671-5a580af5404d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 46 + uncompressed: false + body: '{"server_private_networks":[],"total_count":0}' + headers: + Content-Length: + - "46" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7191fac9-b07c-4190-a992-fdd27c295dac + status: 200 OK + code: 200 + duration: 105.855834ms + - id: 108 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: DELETE response: proto: HTTP/2.0 @@ -5099,9 +5348,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5109,11 +5358,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4043579-90ef-400f-b0bb-260d1ff32ad4 + - e2ea9e91-75ce-4ed4-9353-34a37af6544a status: 204 No Content code: 204 - duration: 172.058958ms - - id: 104 + duration: 178.201459ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5128,8 +5377,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5036b079-9b17-4c6b-9ff8-33650679473a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d210e5b0-6aed-433d-9eb9-f34b08b601c3 method: DELETE response: proto: HTTP/2.0 @@ -5146,9 +5395,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:33 GMT + - Mon, 30 Jun 2025 15:02:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5156,11 +5405,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd38dd15-7028-4e1f-91d1-a985a71ffa7f + - 28f485b2-8e99-4c68-94a5-ea15636082b7 status: 204 No Content code: 204 - duration: 1.398951791s - - id: 105 + duration: 6.149907667s + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5175,8 +5424,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/d505193c-3cd6-41e3-aab6-a306e8d0d5b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e0a88e3a-01e1-4798-90c1-85d865c74e77 method: DELETE response: proto: HTTP/2.0 @@ -5193,9 +5442,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:33 GMT + - Mon, 30 Jun 2025 15:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5203,11 +5452,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c234a05-df0b-4672-9c6b-f1c1aca822a4 + - 3743204d-2c57-46b9-b9b3-25efe29461b4 status: 204 No Content code: 204 - duration: 90.449041ms - - id: 106 + duration: 190.537084ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5222,8 +5471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f83e30a7-afc9-4f7f-9850-fc4d1cdc6b8c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d269f9d3-f55f-4b3d-9f25-693442650dae method: DELETE response: proto: HTTP/2.0 @@ -5240,9 +5489,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:34 GMT + - Mon, 30 Jun 2025 15:02:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5250,11 +5499,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5d31771-4b2b-40bb-9156-6c9d6ed0c4ec + - b282e18e-4c32-48ee-8e08-27a387308360 status: 204 No Content code: 204 - duration: 1.546603625s - - id: 107 + duration: 6.352280875s + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5269,8 +5518,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5537e9e4-bb3d-40bb-a599-4ee44773668a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fea89447-3681-4a84-9cb7-21409ebb19dd method: DELETE response: proto: HTTP/2.0 @@ -5287,9 +5536,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:34 GMT + - Mon, 30 Jun 2025 15:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5297,11 +5546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e1bf454-d618-4078-af75-f65f8c49032f + - 26bedb7e-d3d2-4d69-8f74-411fd5c592fa status: 204 No Content code: 204 - duration: 148.288542ms - - id: 108 + duration: 92.414875ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5316,8 +5565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/9c41b3ad-aa1c-4b44-960e-1c5553e03603 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/apple-silicon/v1alpha1/zones/fr-par-1/servers/80eef84c-6158-4512-9671-5a580af5404d method: GET response: proto: HTTP/2.0 @@ -5336,9 +5585,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 26 May 2025 15:31:34 GMT + - Mon, 30 Jun 2025 15:02:54 GMT Server: - - Scaleway API Gateway (fr-par-1;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5346,7 +5595,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45138fcf-0e82-42ab-b49f-62294e96a2cb + - ed5febf3-defc-456b-8251-1d1a7a52b909 status: 403 Forbidden code: 403 - duration: 21.870666ms + duration: 19.225875ms diff --git a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml index 3620a0e82c..c5107e4a0d 100644 --- a/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml +++ b/internal/services/instance/testdata/private-nic-with-ipam.cassette.yaml @@ -6,39 +6,39 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 134 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 426 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":false,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-30T15:15:01.598772Z"}' headers: Content-Length: - - "39208" + - "426" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT - Link: - - ; rel="next",; rel="last" + - Mon, 30 Jun 2025 15:15:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -48,50 +48,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8aae580-4a26-4c3a-bbb2-cfce6ae2a493 - X-Total-Count: - - "75" + - 465b75d1-b920-4df0-a619-a0e91066c682 status: 200 OK code: 200 - duration: 520.712798ms + duration: 557.041959ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 134 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:50.970077Z","custom_routes_propagation_enabled":false,"id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-10T15:28:50.970077Z"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "437" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:50 GMT + - Mon, 30 Jun 2025 15:15:01 GMT + Link: + - ; rel="next",; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -101,48 +99,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bf5ebe5-bd03-4eac-9c74-db2a2ed17718 + - 1622d40c-a23c-462d-82bf-19effb7e66c2 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 575.625775ms + duration: 554.405959ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 425 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-30T15:15:01.758550Z"}' headers: Content-Length: - - "19730" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:15:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -152,12 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c911b5c5-7982-4c6e-a6f2-e53e8e194982 - X-Total-Count: - - "75" + - ce6310f9-43a4-4830-ba43-1b2bc294a628 status: 200 OK code: 200 - duration: 127.324903ms + duration: 103.651041ms - id: 3 request: proto: HTTP/1.1 @@ -173,8 +171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e874136b-ae7b-4deb-9b4c-bb766efcfa92 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -182,18 +180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 19730 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:50.970077Z","custom_routes_propagation_enabled":false,"id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-10T15:28:50.970077Z"}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "437" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Mon, 30 Jun 2025 15:15:01 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -203,10 +203,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fee3b045-af7d-443e-b341-99d04f2e1825 + - 358550aa-6b1a-4569-8fa1-122b585b0a9b + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 108.283812ms + duration: 107.508583ms - id: 4 request: proto: HTTP/1.1 @@ -222,8 +224,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 method: GET response: proto: HTTP/2.0 @@ -231,18 +233,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 425 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2dd98c87-6ea2-49d9-8420-feafa534e478","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"db71f917-bb74-4ccf-bf62-d5f1ce23a2a6","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-30T15:15:01.758550Z"}' headers: Content-Length: - - "1352" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Mon, 30 Jun 2025 15:15:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -252,48 +254,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52bcaf9b-41a1-41f3-97c9-7e82220752ed + - 040e2935-7e20-49f8-a532-f39acc84d601 status: 200 OK code: 200 - duration: 109.7865ms + duration: 125.189333ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 188 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_focal&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 1185 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.235099Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"23504efd-5222-46d7-b2db-32f887cd4609","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:51.235099Z","id":"b7a1650f-5779-414e-becd-92672e27e903","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"},{"created_at":"2025-06-10T15:28:51.235099Z","id":"6f815adb-d30c-4ba4-92bd-c5d3872914b6","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2318::/64","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}],"tags":[],"updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' + body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"066aa37f-004d-417d-9506-323c63f3ec8a","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","label":"ubuntu_focal","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1108" + - "1185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Mon, 30 Jun 2025 15:15:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -303,46 +303,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1e474db-f406-4e51-a71e-6877d4a20d53 + - 0abb6fb3-c497-4576-8be6-5278f01ec004 status: 200 OK code: 200 - duration: 678.336776ms + duration: 119.86725ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"aa80e052-4249-4791-945b-794e9de2c359","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/23504efd-5222-46d7-b2db-32f887cd4609 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 1084 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.235099Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"23504efd-5222-46d7-b2db-32f887cd4609","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:51.235099Z","id":"b7a1650f-5779-414e-becd-92672e27e903","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"},{"created_at":"2025-06-10T15:28:51.235099Z","id":"6f815adb-d30c-4ba4-92bd-c5d3872914b6","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2318::/64","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}],"tags":[],"updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' + body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' headers: Content-Length: - - "1108" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:51 GMT + - Mon, 30 Jun 2025 15:15:02 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -352,29 +354,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c13bf95c-041e-49da-ae7e-9d2ff944bf33 + - 6c0f98b5-b543-457a-9147-51c0380610bc status: 200 OK code: 200 - duration: 95.788488ms + duration: 648.952125ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 174 + content_length: 256 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' + body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -382,18 +384,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1755 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:28:52.131029Z","zone":null}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "369" + - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Mon, 30 Jun 2025 15:15:02 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -403,10 +407,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37c94696-e19a-4227-806c-9ca19229d826 - status: 200 OK - code: 200 - duration: 342.420437ms + - a70b3dc7-0582-4f32-b5ae-6f8ac0320247 + status: 201 Created + code: 201 + duration: 724.710334ms - id: 8 request: proto: HTTP/1.1 @@ -422,8 +426,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/4c00a8d4-bdd0-45ab-8c47-f52db2139819 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b method: GET response: proto: HTTP/2.0 @@ -431,18 +435,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1084 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:28:52.131029Z","zone":null}' + body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' headers: Content-Length: - - "369" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Mon, 30 Jun 2025 15:15:02 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -452,10 +456,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cce2d48a-88fa-4bd9-a680-f725584ce3cf + - 5cb6d465-4ca0-4ba2-99f2-7e329ba6d1da status: 200 OK code: 200 - duration: 137.828542ms + duration: 68.779416ms - id: 9 request: proto: HTTP/1.1 @@ -471,8 +475,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/23504efd-5222-46d7-b2db-32f887cd4609 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -480,18 +484,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 1755 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.235099Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"23504efd-5222-46d7-b2db-32f887cd4609","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:51.235099Z","id":"b7a1650f-5779-414e-becd-92672e27e903","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"},{"created_at":"2025-06-10T15:28:51.235099Z","id":"6f815adb-d30c-4ba4-92bd-c5d3872914b6","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2318::/64","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}],"tags":[],"updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1108" + - "1755" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Mon, 30 Jun 2025 15:15:02 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -501,30 +505,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90283186-853b-4ea0-988d-d3d8febe1df8 + - 74c57210-aca0-4247-a160-d8fdf40e84ef status: 200 OK code: 200 - duration: 93.917619ms + duration: 211.946333ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 256 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayInstancePrivateNIC_IPAM","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2dd98c87-6ea2-49d9-8420-feafa534e478","volumes":{"0":{"boot":false}},"boot_type":"local","project":"105bdce1-64c0-48ab-899d-868455867ecf"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -533,7 +535,7 @@ interactions: trailer: {} content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:51.705489+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:02.146962+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1755" @@ -542,9 +544,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - Mon, 30 Jun 2025 15:15:03 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -554,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56500015-b620-4f42-8392-4186af505398 - status: 201 Created - code: 201 - duration: 1.374139698s + - 9cf4c5c8-897f-4583-99db-a94bfce00400 + status: 200 OK + code: 200 + duration: 151.450583ms - id: 11 request: proto: HTTP/1.1 @@ -573,8 +573,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -582,18 +582,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 682 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:51.705489+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' headers: Content-Length: - - "1755" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:52 GMT + - Mon, 30 Jun 2025 15:15:03 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -603,46 +603,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10394962-8b7c-4bc7-9612-155c143380bc + - 13065bbe-c34c-464b-8550-d58ea9942eae status: 200 OK code: 200 - duration: 226.402239ms + duration: 56.040875ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1755 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:51.705489+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/003bcb3c-b0da-4189-9047-898accac64ec/action","href_result":"/servers/003bcb3c-b0da-4189-9047-898accac64ec","id":"7f8a7790-97f6-42c3-b066-ac62b15ce107","progress":0,"started_at":"2025-06-30T15:15:03.283881+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1755" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Mon, 30 Jun 2025 15:15:03 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7f8a7790-97f6-42c3-b066-ac62b15ce107 Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -652,46 +656,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fbb9844-cf51-4dfb-b149-7eccdb1fbba1 - status: 200 OK - code: 200 - duration: 230.88707ms + - ef158a4e-7216-43ce-9b87-56b932b2fc09 + status: 202 Accepted + code: 202 + duration: 859.877292ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 174 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.917032Z","id":"b643476c-7c52-43a4-ba3f-3feaac64013a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.917032Z","id":"87ca5582-7bcb-4bc6-9230-9a86c41c9be2","product_resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.917032Z","zone":"fr-par-1"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:03.702548Z","zone":null}' headers: Content-Length: - - "701" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Mon, 30 Jun 2025 15:15:03 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -701,50 +707,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48d404b0-1e73-4cfc-9e42-3783d6d3bec4 + - 74c5bd9b-a0c4-4b34-95db-8a25370a47bc status: 200 OK code: 200 - duration: 123.638329ms + duration: 1.271387625s - id: 14 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 358 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/action","href_result":"/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","id":"d53dfe58-0731-45b7-a92b-cc6af0c187f2","progress":0,"started_at":"2025-06-10T15:28:53.443491+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:03.702548Z","zone":null}' headers: Content-Length: - - "357" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d53dfe58-0731-45b7-a92b-cc6af0c187f2 + - Mon, 30 Jun 2025 15:15:03 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -754,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8715690-c561-46b8-8a71-01b3650eb346 - status: 202 Accepted - code: 202 - duration: 340.310198ms + - f3a1417e-ac78-4f4a-a2cb-6ab0bbba29e8 + status: 200 OK + code: 200 + duration: 28.499ms - id: 15 request: proto: HTTP/1.1 @@ -773,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b method: GET response: proto: HTTP/2.0 @@ -782,18 +784,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1777 + content_length: 1084 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:53.210822+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' headers: Content-Length: - - "1777" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:53 GMT + - Mon, 30 Jun 2025 15:15:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -803,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13edae7b-9765-4bdc-b110-b07ca1a6d225 + - ce5d9b4d-c492-4776-a332-16306bd6d96f status: 200 OK code: 200 - duration: 189.402136ms + duration: 36.664042ms - id: 16 request: proto: HTTP/1.1 @@ -822,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -831,18 +833,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1878 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:03.111957+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1878" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:58 GMT + - Mon, 30 Jun 2025 15:15:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -852,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfe7af7e-cb8d-46ad-9dac-1975869fa34c + - cdd45fc6-c507-4b36-9e3b-9a60707030fb status: 200 OK code: 200 - duration: 202.191712ms + duration: 179.297875ms - id: 17 request: proto: HTTP/1.1 @@ -871,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -880,18 +882,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -901,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe267630-44b3-45f4-954e-cd8435349f55 + - ccd14aaa-d266-4456-ba70-640b31395004 status: 200 OK code: 200 - duration: 227.361036ms + duration: 170.211667ms - id: 18 request: proto: HTTP/1.1 @@ -920,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -929,18 +931,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1911 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b643476c-7c52-43a4-ba3f-3feaac64013a","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -950,10 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0222787a-fe4b-48e1-9812-0151e0ca949b - status: 404 Not Found - code: 404 - duration: 51.110195ms + - ba2bbacd-2c64-47f1-a40f-46337e52a5a3 + status: 200 OK + code: 200 + duration: 174.827833ms - id: 19 request: proto: HTTP/1.1 @@ -969,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -978,18 +980,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.917032Z","id":"b643476c-7c52-43a4-ba3f-3feaac64013a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.917032Z","id":"87ca5582-7bcb-4bc6-9230-9a86c41c9be2","product_resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.917032Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' headers: Content-Length: - - "701" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -999,10 +1001,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0271ddce-78be-47f9-b1f8-ebb172a033fa - status: 200 OK - code: 200 - duration: 119.690644ms + - bfd80e20-2a96-4189-add4-2e0a69b1c055 + status: 404 Not Found + code: 404 + duration: 52.04775ms - id: 20 request: proto: HTTP/1.1 @@ -1018,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -1027,18 +1029,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 682 uncompressed: false - body: '{"user_data":[]}' + body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' headers: Content-Length: - - "17" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1048,10 +1050,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e5b074-57ae-46ff-8c90-2bed7e4d7557 + - 95d278ad-19f1-4afe-834e-9211c9153710 status: 200 OK code: 200 - duration: 136.225896ms + duration: 45.488ms - id: 21 request: proto: HTTP/1.1 @@ -1067,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/user_data method: GET response: proto: HTTP/2.0 @@ -1076,20 +1078,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 17 uncompressed: false - body: '{"private_nics":[]}' + body: '{"user_data":[]}' headers: Content-Length: - - "20" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1099,12 +1099,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dff9cf1e-ae2c-43bc-aa28-117f157bf727 - X-Total-Count: - - "0" + - b2275b9d-89c5-4903-922d-110d09bf4373 status: 200 OK code: 200 - duration: 132.829616ms + duration: 62.799417ms - id: 22 request: proto: HTTP/1.1 @@ -1120,8 +1118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics method: GET response: proto: HTTP/2.0 @@ -1129,18 +1127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 20 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "1910" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:59 GMT + - Mon, 30 Jun 2025 15:15:09 GMT + Link: + - ; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1150,48 +1150,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ccf5e6a-1c3f-46ea-af06-38a5fe0a62da + - 9fcd8dab-215a-4e05-aa10-e945d037826c + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 215.079473ms + duration: 65.090667ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 116 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 1911 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Mon, 30 Jun 2025 15:15:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1201,28 +1201,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0bbd5ec-d3ba-4edc-b701-e882f4b1f871 - status: 201 Created - code: 201 - duration: 733.387928ms + - a853553f-c3aa-49db-8bcc-1c8b896aa779 + status: 200 OK + code: 200 + duration: 250.268625ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 116 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1231,7 +1233,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1240,7 +1242,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:00 GMT + - Mon, 30 Jun 2025 15:15:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1250,10 +1252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00a4b2a6-9695-462b-8345-3238bd7bf455 - status: 200 OK - code: 200 - duration: 113.404346ms + - 351fbd58-0573-436f-9a69-e1ef2106861e + status: 201 Created + code: 201 + duration: 433.032958ms - id: 25 request: proto: HTTP/1.1 @@ -1269,8 +1271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1280,7 +1282,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1289,7 +1291,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:05 GMT + - Mon, 30 Jun 2025 15:15:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1299,10 +1301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a919f5b9-4506-400e-8502-6db1616db987 + - 8c777481-52db-4e59-b814-8b2b255927d6 status: 200 OK code: 200 - duration: 171.860757ms + duration: 70.732625ms - id: 26 request: proto: HTTP/1.1 @@ -1318,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1329,7 +1331,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1338,7 +1340,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:10 GMT + - Mon, 30 Jun 2025 15:15:15 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1348,10 +1350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ce2ab55-d537-47eb-86a7-8e7322f530ee + - 9a3f2108-c070-41b1-9389-135955c5fd64 status: 200 OK code: 200 - duration: 116.759677ms + duration: 64.434458ms - id: 27 request: proto: HTTP/1.1 @@ -1367,8 +1369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1378,7 +1380,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1387,7 +1389,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:16 GMT + - Mon, 30 Jun 2025 15:15:20 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1397,10 +1399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1038d30b-a191-458e-99a5-a0d1155af167 + - 32dd1345-4d06-48b4-a90d-d406ce68c0ac status: 200 OK code: 200 - duration: 125.957777ms + duration: 145.861792ms - id: 28 request: proto: HTTP/1.1 @@ -1416,8 +1418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1427,7 +1429,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1436,7 +1438,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:21 GMT + - Mon, 30 Jun 2025 15:15:25 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1446,10 +1448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e0c878d-a432-47ff-95ad-1dd40c164554 + - cd853ff8-8c44-427c-8e3a-59d43d2f6cfe status: 200 OK code: 200 - duration: 131.838406ms + duration: 85.300334ms - id: 29 request: proto: HTTP/1.1 @@ -1465,8 +1467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1476,7 +1478,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1485,7 +1487,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:26 GMT + - Mon, 30 Jun 2025 15:15:30 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1495,10 +1497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ab47670-7597-4abc-8c1f-22582b81dd55 + - 5dcb9e60-f3b5-4c7e-9164-0e5dcbdd862e status: 200 OK code: 200 - duration: 99.53352ms + duration: 62.604333ms - id: 30 request: proto: HTTP/1.1 @@ -1514,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1525,7 +1527,7 @@ interactions: trailer: {} content_length: 433 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:09.990867+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "433" @@ -1534,7 +1536,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:15:35 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1544,10 +1546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6934be01-939d-492a-8f2e-943f73cf78a2 + - 369106ff-5e9a-45c8-b2ab-1c3ffdc15715 status: 200 OK code: 200 - duration: 114.905339ms + duration: 66.99075ms - id: 31 request: proto: HTTP/1.1 @@ -1563,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1572,18 +1574,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:36 GMT + - Mon, 30 Jun 2025 15:15:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1593,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0db5600d-1187-455f-852e-055bf000e6bc + - 8d1d6ba9-5e25-46b3-a882-10f32fabbf63 status: 200 OK code: 200 - duration: 118.769796ms + duration: 70.645584ms - id: 32 request: proto: HTTP/1.1 @@ -1612,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1621,18 +1623,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 433 + content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:28:59.839773+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "433" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:41 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1642,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 130e1b7e-1045-4c70-9341-09f43405512f + - 51d966d5-8252-4f0d-8a25-903646804bad status: 200 OK code: 200 - duration: 136.566522ms + duration: 65.135458ms - id: 33 request: proto: HTTP/1.1 @@ -1661,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -1670,18 +1672,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 2329 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "435" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1691,10 +1693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4255917b-36b8-4135-b759-3ff8dc6ce49c + - be66bc0d-cd4d-4f54-90eb-874cd9c4126d status: 200 OK code: 200 - duration: 105.889989ms + duration: 155.773042ms - id: 34 request: proto: HTTP/1.1 @@ -1710,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f832f095-fcfd-4313-a3fd-790f9526222b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1719,18 +1721,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 537 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "435" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:46 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1740,10 +1742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63c3fb2b-65cb-42d6-bdf2-bb87947596af + - abc3b1a1-0f39-4df2-91dc-968696a4dcdd status: 200 OK code: 200 - duration: 84.552693ms + duration: 48.437709ms - id: 35 request: proto: HTTP/1.1 @@ -1759,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1768,18 +1770,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 537 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "2328" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1789,10 +1791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 297e4b82-0ccb-4eb3-94f8-e0ad759886ca + - 2d2542ea-8f39-4d84-b245-063f914f047b status: 200 OK code: 200 - duration: 347.446764ms + duration: 52.912125ms - id: 36 request: proto: HTTP/1.1 @@ -1808,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=23504efd-5222-46d7-b2db-32f887cd4609&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -1817,18 +1819,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 435 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "552" + - "435" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1838,10 +1840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe19240-30f4-44d6-b469-2d61cce3fc2a + - 024ad6b5-444f-4984-b261-5d7e4028c5de status: 200 OK code: 200 - duration: 50.705024ms + duration: 86.304292ms - id: 37 request: proto: HTTP/1.1 @@ -1857,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1866,18 +1868,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 537 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "552" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1887,10 +1889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a9cd019-b140-464c-b671-4cf90c606056 + - 4b3ee7d9-ed88-4e76-86a7-f63075e52101 status: 200 OK code: 200 - duration: 81.857238ms + duration: 74.8575ms - id: 38 request: proto: HTTP/1.1 @@ -1906,8 +1908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 method: GET response: proto: HTTP/2.0 @@ -1915,18 +1917,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 425 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:15:01.598772Z","custom_routes_propagation_enabled":true,"id":"aa80e052-4249-4791-945b-794e9de2c359","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-30T15:15:01.758550Z"}' headers: Content-Length: - - "435" + - "425" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1936,10 +1938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c053b226-fde4-4bf3-a426-58d8fb0166bb + - 8ff581a4-5e52-40a2-bfaf-0996a524c56b status: 200 OK code: 200 - duration: 106.173261ms + duration: 32.599417ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b method: GET response: proto: HTTP/2.0 @@ -1964,18 +1966,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 1084 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' headers: Content-Length: - - "552" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:47 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1985,10 +1987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42f0954e-f2cc-447c-aa60-4f8549f47d88 + - 9f0b3dc7-2b75-4ad2-a6f0-5cf1d021eea3 status: 200 OK code: 200 - duration: 76.428136ms + duration: 25.355625ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e874136b-ae7b-4deb-9b4c-bb766efcfa92 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa method: GET response: proto: HTTP/2.0 @@ -2013,18 +2015,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 437 + content_length: 511 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:50.970077Z","custom_routes_propagation_enabled":false,"id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92","is_default":false,"name":"TestAccScalewayInstancePrivateNIC_IPAM","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-06-10T15:28:50.970077Z"}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}' headers: Content-Length: - - "437" + - "511" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2034,10 +2036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0c7b534-5d16-4fad-a376-fb84ea64ae3a + - e70c3379-6f77-45d1-b4f8-d950ae78d8b5 status: 200 OK code: 200 - duration: 99.999453ms + duration: 31.104583ms - id: 41 request: proto: HTTP/1.1 @@ -2053,8 +2055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/23504efd-5222-46d7-b2db-32f887cd4609 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b method: GET response: proto: HTTP/2.0 @@ -2062,18 +2064,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1108 + content_length: 1084 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.235099Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"23504efd-5222-46d7-b2db-32f887cd4609","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:51.235099Z","id":"b7a1650f-5779-414e-becd-92672e27e903","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"},{"created_at":"2025-06-10T15:28:51.235099Z","id":"6f815adb-d30c-4ba4-92bd-c5d3872914b6","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2318::/64","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}],"tags":[],"updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' + body: '{"created_at":"2025-06-30T15:15:02.007967Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f832f095-fcfd-4313-a3fd-790f9526222b","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:15:02.007967Z","id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"},{"created_at":"2025-06-30T15:15:02.007967Z","id":"76c7743a-3273-4bad-9a38-bc3234922822","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b6b7::/64","updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}],"tags":[],"updated_at":"2025-06-30T15:15:02.007967Z","vpc_id":"aa80e052-4249-4791-945b-794e9de2c359"}' headers: Content-Length: - - "1108" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2083,10 +2085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f4ce429-4a43-43f9-be3c-c1bfc771cb4f + - c4da4d30-257a-476b-aebd-a7d5ebd2be8d status: 200 OK code: 200 - duration: 26.652696ms + duration: 29.476334ms - id: 42 request: proto: HTTP/1.1 @@ -2102,8 +2104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/4c00a8d4-bdd0-45ab-8c47-f52db2139819 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -2111,18 +2113,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 525 + content_length: 2329 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "525" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2132,10 +2134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c52a2c4-872b-4dea-bb95-3b1294f6d1d8 + - d876272a-3ef8-4ba6-8627-eed55639a4e1 status: 200 OK code: 200 - duration: 33.786123ms + duration: 136.221ms - id: 43 request: proto: HTTP/1.1 @@ -2151,106 +2153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/23504efd-5222-46d7-b2db-32f887cd4609 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1108 - uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.235099Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"23504efd-5222-46d7-b2db-32f887cd4609","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:51.235099Z","id":"b7a1650f-5779-414e-becd-92672e27e903","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"},{"created_at":"2025-06-10T15:28:51.235099Z","id":"6f815adb-d30c-4ba4-92bd-c5d3872914b6","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2318::/64","updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}],"tags":[],"updated_at":"2025-06-10T15:28:51.235099Z","vpc_id":"e874136b-ae7b-4deb-9b4c-bb766efcfa92"}' - headers: - Content-Length: - - "1108" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 659cf576-69eb-406d-a1c8-a25e3cdd1f2a - status: 200 OK - code: 200 - duration: 66.578664ms - - id: 44 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2328 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2328" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 10 Jun 2025 15:29:48 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 3fff0cc4-99e0-4d12-9acf-e23c3a4e9663 - status: 200 OK - code: 200 - duration: 245.34553ms - - id: 45 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -2260,7 +2164,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b643476c-7c52-43a4-ba3f-3feaac64013a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' headers: Content-Length: - "143" @@ -2269,7 +2173,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2279,11 +2183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05bbd293-ff6f-475a-9f92-d668329f48e4 + - 7adce826-ee3c-4a5a-890a-b1b8b0956ff1 status: 404 Not Found code: 404 - duration: 80.074955ms - - id: 46 + duration: 35.263042ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2298,8 +2202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -2307,18 +2211,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 682 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.917032Z","id":"b643476c-7c52-43a4-ba3f-3feaac64013a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.917032Z","id":"87ca5582-7bcb-4bc6-9230-9a86c41c9be2","product_resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.917032Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:48 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2328,11 +2232,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d4905ab-0229-429c-b070-8bdd7e31e77c + - efa6ff15-6571-42cc-9e0d-568ce42fffdf status: 200 OK code: 200 - duration: 133.712039ms - - id: 47 + duration: 44.4535ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2347,8 +2251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/user_data method: GET response: proto: HTTP/2.0 @@ -2367,7 +2271,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:41 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2377,11 +2281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0539e75-3c16-4498-9a29-925f3e6cac5e + - da233fb7-bd7b-43ad-acad-723f4528f5f6 status: 200 OK code: 200 - duration: 199.244059ms - - id: 48 + duration: 56.782125ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2396,8 +2300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics method: GET response: proto: HTTP/2.0 @@ -2407,7 +2311,7 @@ interactions: trailer: {} content_length: 438 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "438" @@ -2416,9 +2320,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2428,13 +2332,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37198d6b-fed7-4708-aadc-61cd000efc67 + - a518cc21-a157-4e33-94ad-89ef0fd9f768 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 115.352236ms - - id: 49 + duration: 67.69ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2449,8 +2353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2458,18 +2362,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 537 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "552" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2479,11 +2383,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85ac2876-452b-474a-ba30-ed147ecb4d6f + - ef78a3c3-6342-4279-935b-6b177840fcaa status: 200 OK code: 200 - duration: 57.151804ms - - id: 50 + duration: 39.879083ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2498,8 +2402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -2509,7 +2413,7 @@ interactions: trailer: {} content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "435" @@ -2518,7 +2422,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2528,11 +2432,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfb491d5-c92d-473b-a5ea-f760bc17a398 + - 2857d90a-261c-4f42-a984-3a76d460f41b status: 200 OK code: 200 - duration: 104.906726ms - - id: 51 + duration: 78.147583ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2547,8 +2451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -2556,18 +2460,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2328 + content_length: 2329 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2328" + - "2329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2577,11 +2481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a928626-11cc-452c-9300-fc73f6f514ef + - 5a50bd03-f953-45cf-a529-b1c6dda4bde3 status: 200 OK code: 200 - duration: 189.940882ms - - id: 52 + duration: 129.763541ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2596,8 +2500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=23504efd-5222-46d7-b2db-32f887cd4609&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=f832f095-fcfd-4313-a3fd-790f9526222b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2605,18 +2509,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 537 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "552" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2626,11 +2530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4876fd2-a2fc-4306-9545-3f252c575cea + - e73a06f2-ef4c-4bca-a877-649fa8abc361 status: 200 OK code: 200 - duration: 57.455213ms - - id: 53 + duration: 55.248333ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2645,8 +2549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2654,18 +2558,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 537 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "552" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:49 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2675,11 +2579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 556f090b-9f42-4b79-b256-71514cfbb983 + - 89c212d5-2640-4d68-96d5-105c92a5c833 status: 200 OK code: 200 - duration: 105.249248ms - - id: 54 + duration: 55.805125ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2694,8 +2598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=c6d30894-5f5d-4ab2-85ed-12375890b7c9&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=e1c51f64-389a-441f-b6b3-181677ae6cc9&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2703,18 +2607,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 552 + content_length: 537 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-10T15:28:52.131029Z","id":"4c00a8d4-bdd0-45ab-8c47-f52db2139819","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","mac_address":"02:00:00:10:D1:48","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b7a1650f-5779-414e-becd-92672e27e903"},"tags":[],"updated_at":"2025-06-10T15:29:00.324337Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:15:03.702548Z","id":"cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","mac_address":"02:00:00:1A:B6:A3","name":"TestAccScalewayInstancePrivateNIC_IPAM","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"6bfc23a8-3b0c-4bac-8a7a-4c6cb682b0bd"},"tags":[],"updated_at":"2025-06-30T15:15:10.262512Z","zone":null}],"total_count":1}' headers: Content-Length: - - "552" + - "537" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2724,11 +2628,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee17d998-e70f-4a6e-8171-cc173c72fb13 + - 70c9161d-1c74-4f1f-92c4-771b1df2b1f8 status: 200 OK code: 200 - duration: 97.936153ms - - id: 55 + duration: 104.637417ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2743,8 +2647,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -2754,7 +2658,7 @@ interactions: trailer: {} content_length: 435 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:28:59.839773+00:00","id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","ipam_ip_ids":["4c00a8d4-bdd0-45ab-8c47-f52db2139819"],"mac_address":"02:00:00:10:d1:48","modification_date":"2025-06-10T15:29:44.190546+00:00","private_network_id":"23504efd-5222-46d7-b2db-32f887cd4609","server_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:15:09.990867+00:00","id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","ipam_ip_ids":["cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa"],"mac_address":"02:00:00:1a:b6:a3","modification_date":"2025-06-30T15:15:36.282161+00:00","private_network_id":"f832f095-fcfd-4313-a3fd-790f9526222b","server_id":"003bcb3c-b0da-4189-9047-898accac64ec","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "435" @@ -2763,7 +2667,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Mon, 30 Jun 2025 15:15:42 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2773,11 +2677,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1e47e60-ffd4-47b3-9d46-ab45634f4b3e + - 1e337c57-8779-4ac0-b457-645a7691b250 status: 200 OK code: 200 - duration: 126.314755ms - - id: 56 + duration: 987.938ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2792,8 +2696,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: DELETE response: proto: HTTP/2.0 @@ -2810,7 +2714,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:43 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2820,11 +2724,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7081a533-7a17-4352-91e4-7c93efaa7c6b + - 70fd917d-ec08-4864-a601-b4a84e313b1c status: 204 No Content code: 204 - duration: 316.747539ms - - id: 57 + duration: 258.626666ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2839,8 +2743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -2850,7 +2754,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"c6d30894-5f5d-4ab2-85ed-12375890b7c9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"e1c51f64-389a-441f-b6b3-181677ae6cc9","type":"not_found"}' headers: Content-Length: - "148" @@ -2859,7 +2763,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2869,11 +2773,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63e6d36c-85cd-4a23-ba0c-e5e719e2287c + - b809cc82-c75c-419a-ba99-024493c76712 status: 404 Not Found code: 404 - duration: 169.23511ms - - id: 58 + duration: 63.598875ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2890,8 +2794,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/4c00a8d4-bdd0-45ab-8c47-f52db2139819 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/cf3a6e01-4dc3-44cc-9e37-0f2925f1a1aa method: DELETE response: proto: HTTP/2.0 @@ -2908,7 +2812,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2918,11 +2822,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97e57af7-7870-4afd-9822-788d8a0a6308 + - dc4c6e9c-2c96-4db5-a8de-9873a0b7aa37 status: 204 No Content code: 204 - duration: 115.593989ms - - id: 59 + duration: 53.556167ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2937,8 +2841,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -2946,18 +2850,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1910 + content_length: 1911 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:28:57.209798+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:06.399661+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1910" + - "1911" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2967,11 +2871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08e35138-cca6-4cba-bd80-e1f425f36934 + - dcba183a-2922-4943-9a90-9f9e541cdf43 status: 200 OK code: 200 - duration: 220.394335ms - - id: 60 + duration: 134.156791ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2986,8 +2890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -2995,18 +2899,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 701 + content_length: 682 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.917032Z","id":"b643476c-7c52-43a4-ba3f-3feaac64013a","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[{"created_at":"2025-06-10T15:28:51.917032Z","id":"87ca5582-7bcb-4bc6-9230-9a86c41c9be2","product_resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:28:51.917032Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":null,"name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:15:02.292744Z","id":"2607a5b8-a58f-4b93-bda5-129ac9c6c95d","product_resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:15:02.292744Z","zone":"fr-par-1"}' headers: Content-Length: - - "701" + - "682" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3016,11 +2920,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5bce313-852c-46c4-aabe-940e2dbf7664 + - 37d54f7c-0616-47ef-a95c-b2fc790bb1f4 status: 200 OK code: 200 - duration: 86.139389ms - - id: 61 + duration: 68.06925ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3037,8 +2941,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/action method: POST response: proto: HTTP/2.0 @@ -3048,7 +2952,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/action","href_result":"/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","id":"1b654ef9-be07-43b8-b048-d637e8a9a41e","progress":0,"started_at":"2025-06-10T15:29:51.918148+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/003bcb3c-b0da-4189-9047-898accac64ec/action","href_result":"/servers/003bcb3c-b0da-4189-9047-898accac64ec","id":"b036827e-d472-48c6-8e84-ec85465d8002","progress":0,"started_at":"2025-06-30T15:15:44.442188+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3057,9 +2961,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:51 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/1b654ef9-be07-43b8-b048-d637e8a9a41e + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b036827e-d472-48c6-8e84-ec85465d8002 Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3069,11 +2973,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0112f4b6-0c88-4b5d-9dd5-1b392bd83a29 + - 4c650048-c7a5-4c72-87f0-dbd160a9381f status: 202 Accepted code: 202 - duration: 223.530778ms - - id: 62 + duration: 429.183209ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3088,8 +2992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3097,18 +3001,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:29:51.747774+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1870" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Mon, 30 Jun 2025 15:15:44 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3118,11 +3022,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e20c6f2-5f06-4944-a453-df5b896fddf8 + - 0982526e-a2be-4848-82b3-e246cebf66a9 status: 200 OK code: 200 - duration: 205.316418ms - - id: 63 + duration: 129.3235ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3137,8 +3041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/23504efd-5222-46d7-b2db-32f887cd4609 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f832f095-fcfd-4313-a3fd-790f9526222b method: DELETE response: proto: HTTP/2.0 @@ -3155,7 +3059,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:52 GMT + - Mon, 30 Jun 2025 15:15:46 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3165,11 +3069,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4563080-2289-4043-8f7c-adff227dbe23 + - 3e62ee93-7516-4b35-97fe-693ae3c0de94 status: 204 No Content code: 204 - duration: 1.346326937s - - id: 64 + duration: 1.892658625s + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,8 +3088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e874136b-ae7b-4deb-9b4c-bb766efcfa92 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa80e052-4249-4791-945b-794e9de2c359 method: DELETE response: proto: HTTP/2.0 @@ -3202,7 +3106,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:53 GMT + - Mon, 30 Jun 2025 15:15:46 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3212,11 +3116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c808e833-c63c-49c4-9e51-c89848b8ab45 + - f1fbd27f-c19a-461d-a963-e53e35b374c9 status: 204 No Content code: 204 - duration: 199.709863ms - - id: 65 + duration: 113.953375ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3231,8 +3135,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3240,18 +3144,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:29:51.747774+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1870" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:57 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3261,11 +3165,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37650a64-93a3-4ef4-9563-4cc180031c28 + - 0f816019-20ff-4160-ab17-744065c16d8e status: 200 OK code: 200 - duration: 196.58928ms - - id: 66 + duration: 132.188708ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3280,8 +3184,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3289,18 +3193,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:29:51.747774+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1870" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:02 GMT + - Mon, 30 Jun 2025 15:15:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3310,11 +3214,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a913b7a3-c92e-4e7e-93d0-595564aae92e + - 997fd5fb-2768-49aa-9f32-bcea5538589e status: 200 OK code: 200 - duration: 348.376435ms - - id: 67 + duration: 156.798666ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3329,8 +3233,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3338,18 +3242,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1870 + content_length: 1871 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:29:51.747774+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1870" + - "1871" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:07 GMT + - Mon, 30 Jun 2025 15:16:00 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3359,11 +3263,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67864231-54c8-48d4-8316-6d49dd313a19 + - 8e753c21-cea6-4582-a538-cef6ba5e8214 status: 200 OK code: 200 - duration: 241.842698ms - - id: 68 + duration: 196.530917ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1871 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:15:44.292940+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1871" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:16:05 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2c580ea5-1dfd-4157-bf7e-b62b486fddeb + status: 200 OK + code: 200 + duration: 401.227542ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3378,8 +3331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3389,7 +3342,7 @@ interactions: trailer: {} content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:30:07.783299+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:16:05.840893+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1755" @@ -3398,7 +3351,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:16:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3408,11 +3361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29b0afe9-8c53-4cbb-9914-e9b0cade1601 + - ca66429d-67c6-4e40-adf3-5bc144c4dc07 status: 200 OK code: 200 - duration: 196.838856ms - - id: 69 + duration: 317.697542ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3427,8 +3380,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3438,7 +3391,7 @@ interactions: trailer: {} content_length: 1755 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:28:51.705489+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","image":{"arch":"x86_64","creation_date":"2025-02-03T13:36:07.796413+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2dd98c87-6ea2-49d9-8420-feafa534e478","modification_date":"2025-02-03T13:36:07.796413+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0a:e9","maintenances":[],"modification_date":"2025-06-10T15:30:07.783299+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"105bdce1-64c0-48ab-899d-868455867ecf","placement_group":null,"private_ip":null,"private_nics":[],"project":"105bdce1-64c0-48ab-899d-868455867ecf","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"5881315f-2400-43a0-ac75-08adf6cb8c12","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"b643476c-7c52-43a4-ba3f-3feaac64013a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:15:02.146962+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"testaccscalewayinstanceprivatenic-ipam","id":"003bcb3c-b0da-4189-9047-898accac64ec","image":{"arch":"x86_64","creation_date":"2025-06-25T15:47:55.405944+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"7f30a934-2f17-4868-b3a3-eb7a8b90792e","modification_date":"2025-06-25T15:47:55.405944+00:00","name":"Ubuntu 20.04 Focal Fossa","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:df","maintenances":[],"modification_date":"2025-06-30T15:16:05.840893+00:00","name":"TestAccScalewayInstancePrivateNIC_IPAM","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1755" @@ -3447,7 +3400,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3457,11 +3410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10bfc0e3-168e-47c3-83d0-c099bb8bd814 + - d17afd2e-e538-4ce3-ad87-f16e839ecf12 status: 200 OK code: 200 - duration: 287.397813ms - - id: 70 + duration: 227.99275ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3476,8 +3429,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: DELETE response: proto: HTTP/2.0 @@ -3494,7 +3447,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3504,11 +3457,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27c46f9e-1fcc-4715-bfe2-abbb184e5a9a + - 752f744a-fba9-4e97-8f0d-66a91a5f326a status: 204 No Content code: 204 - duration: 492.471133ms - - id: 71 + duration: 274.187834ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3523,8 +3476,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec method: GET response: proto: HTTP/2.0 @@ -3534,7 +3487,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","type":"not_found"}' headers: Content-Length: - "143" @@ -3543,7 +3496,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3553,11 +3506,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ac518e8-7cb0-44a0-ae6d-9f3ea2ff632c + - 7716852b-7466-4fb8-b0fd-7a404193e725 status: 404 Not Found code: 404 - duration: 175.245189ms - - id: 72 + duration: 91.128417ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3572,8 +3525,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -3583,7 +3536,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"b643476c-7c52-43a4-ba3f-3feaac64013a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","type":"not_found"}' headers: Content-Length: - "143" @@ -3592,7 +3545,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3602,11 +3555,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d65a6860-6a30-4c5f-b803-c789b353721a + - 3cc92644-79e2-4249-bcc9-cb6d32db5ac9 status: 404 Not Found code: 404 - duration: 103.25097ms - - id: 73 + duration: 32.710209ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3621,8 +3574,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: GET response: proto: HTTP/2.0 @@ -3630,18 +3583,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 494 + content_length: 480 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:51.917032Z","id":"b643476c-7c52-43a4-ba3f-3feaac64013a","last_detached_at":"2025-06-10T15:30:14.052298Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"b4d54bf7-1656-46c2-84b8-5dd238cfd444","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:14.052298Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:15:02.292744Z","id":"93e565d6-5afd-4caf-9ec3-fab4fa7b9eab","last_detached_at":"2025-06-30T15:16:11.578400Z","name":"Ubuntu 20.04 Focal Fossa_sbs_volume_0","parent_snapshot_id":"71053b19-ee07-4a0f-ba0f-4764557f6b87","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:16:11.578400Z","zone":"fr-par-1"}' headers: Content-Length: - - "494" + - "480" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3651,11 +3604,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d8c21ca-7140-46ed-a055-0988ee70573e + - 630e2395-9eed-4059-980a-19937ca6da43 status: 200 OK code: 200 - duration: 116.409217ms - - id: 74 + duration: 47.458916ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3670,8 +3623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/b643476c-7c52-43a4-ba3f-3feaac64013a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/93e565d6-5afd-4caf-9ec3-fab4fa7b9eab method: DELETE response: proto: HTTP/2.0 @@ -3688,7 +3641,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3698,11 +3651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 907278d0-c50e-4590-9fad-9f6039a1d741 + - cd38a1e6-c2db-4309-93bd-f120f9beaa35 status: 204 No Content code: 204 - duration: 168.78316ms - - id: 75 + duration: 80.352666ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3717,8 +3670,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd/private_nics/c6d30894-5f5d-4ab2-85ed-12375890b7c9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/003bcb3c-b0da-4189-9047-898accac64ec/private_nics/e1c51f64-389a-441f-b6b3-181677ae6cc9 method: GET response: proto: HTTP/2.0 @@ -3728,7 +3681,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"77f60c04-7a2f-4c0c-b7c7-7fbe17d89bcd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"003bcb3c-b0da-4189-9047-898accac64ec","type":"not_found"}' headers: Content-Length: - "143" @@ -3737,7 +3690,7 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:16:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3747,7 +3700,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fa5a2b8-02be-4a35-9d36-fcfaf2599b81 + - 1b0dd893-81a3-4dd4-bb2b-49e5e48c0b84 status: 404 Not Found code: 404 - duration: 79.557524ms + duration: 36.7965ms diff --git a/internal/services/ipam/testdata/data-source-ipam-ips-basic.cassette.yaml b/internal/services/ipam/testdata/data-source-ipam-ips-basic.cassette.yaml index e781e4e27c..6fd2e0a307 100644 --- a/internal/services/ipam/testdata/data-source-ipam-ips-basic.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipam-ips-basic.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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.325693Z","custom_routes_propagation_enabled":false,"id":"f34b4fb5-70bc-48df-be17-b042f8e7f551","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-06-10T15:29:29.325693Z"}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":false,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.430168Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 111c6b01-d6e9-493d-ba35-0f1587d88004 + - ad785ee0-a2fc-4792-80cb-cc229be5d606 status: 200 OK code: 200 - duration: 249.927792ms + duration: 86.299792ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f34b4fb5-70bc-48df-be17-b042f8e7f551 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.325693Z","custom_routes_propagation_enabled":false,"id":"f34b4fb5-70bc-48df-be17-b042f8e7f551","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-06-10T15:29:29.325693Z"}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":true,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.495405Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:29 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45c882c2-5320-4ed2-8e3d-329741c2df7e + - ff201856-993a-4495-8f9b-ae9235ac45ab status: 200 OK code: 200 - duration: 125.555125ms + duration: 45.560584ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 173 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-unruffled-babbage","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":true,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.495405Z"}' headers: Content-Length: - - "1093" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 230e44df-b2c0-402d-92dc-e0f041685d94 + - 1267e0e3-ed98-4fae-b2f9-dcb6f6e83cd8 status: 200 OK code: 200 - duration: 710.921333ms + duration: 47.08875ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 214 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-vigilant-satoshi","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 684c08be-b87f-4114-88e5-4b7670766e90 + - 49595016-3ea5-4d64-83d6-9d633aeb9ae0 status: 200 OK code: 200 - duration: 152.860916ms + duration: 628.898ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 191 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12"},"is_ipv6":false,"tags":["terraform-test","data_scaleway_ipam_ips"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 1068 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "411" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,48 +248,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85b08f44-1698-44db-8040-cfb04c00ae88 + - 41300797-9e54-420a-a6ca-4fd0d456fcd3 status: 200 OK code: 200 - duration: 481.789125ms + duration: 43.912083ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 191 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c"},"is_ipv6":false,"tags":["terraform-test","data_scaleway_ipam_ips"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,50 +299,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bcda46a-6569-4e80-aaef-7d1187d72827 + - 26df8fb4-a056-4302-80c2-3d4e397eba01 status: 200 OK code: 200 - duration: 23.442875ms + duration: 3.988071041s - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 191 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","source":{"private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12"},"is_ipv6":false,"tags":["terraform-test","data_scaleway_ipam_ips"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1425ad4b-6c27-43ec-a6c1-edcc5623e5a3 + - 1cdcf056-7491-46e6-b3f8-45ff7f170ae0 status: 200 OK code: 200 - duration: 547.212375ms + duration: 26.519167ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -376,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:30 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,48 +397,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ba7792c-65dc-445a-93c3-ab443326961b + - fd0aac5a-529a-4873-841c-92eb3b7ab730 status: 200 OK code: 200 - duration: 131.195458ms + duration: 30.320084ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 191 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c"},"is_ipv6":false,"tags":["terraform-test","data_scaleway_ipam_ips"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null}' + body: '{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a4aff87-0051-4c49-8ca9-01436cbd6105 + - 04d4b90d-8831-47c0-95f5-b6cc3205bb7d status: 200 OK code: 200 - duration: 124.519792ms + duration: 4.996387791s - id: 9 request: proto: HTTP/1.1 @@ -465,8 +467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: GET response: proto: HTTP/2.0 @@ -474,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 399 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}' headers: Content-Length: - - "1093" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abe1f09b-0df3-42cf-9b7b-036658011661 + - 7e9c2621-dc5a-4887-b8e9-6ee47a504e6d status: 200 OK code: 200 - duration: 116.186667ms + duration: 33.197667ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f34b4fb5-70bc-48df-be17-b042f8e7f551 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -523,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.325693Z","custom_routes_propagation_enabled":false,"id":"f34b4fb5-70bc-48df-be17-b042f8e7f551","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-06-10T15:29:29.325693Z"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "405" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b26e67b0-4232-46bd-b714-a4e02002a67b + - 514728ab-ee29-4333-a52c-7a7a60835c63 status: 200 OK code: 200 - duration: 29.3315ms + duration: 26.828584ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc method: GET response: proto: HTTP/2.0 @@ -572,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":true,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.495405Z"}' headers: Content-Length: - - "1093" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5f9cfb4-ddf2-416a-80e4-5a7b63e25e09 + - 1265f81f-1f07-4820-8092-1def06204185 status: 200 OK code: 200 - duration: 135.999583ms + duration: 23.937583ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -621,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 1068 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "411" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04a840ab-f36b-4744-9e48-43fe5803cec6 + - 66456b23-8b51-42ba-b7fd-8625147e7e6e status: 200 OK code: 200 - duration: 29.642292ms + duration: 28.888458ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: GET response: proto: HTTP/2.0 @@ -670,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null}' + body: '{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b185bf7-dc96-42da-bfba-b6104318569f + - 924c5a47-7701-4d09-9fb5-2e6294bbcf60 status: 200 OK code: 200 - duration: 30.70775ms + duration: 29.895292ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f method: GET response: proto: HTTP/2.0 @@ -719,20 +721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 399 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null}' headers: Content-Length: - - "1093" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e92cfc35-0958-491d-902b-d1606bd24d31 + - 4d1522c1-dd38-49f3-8fb0-4d49e48d9101 status: 200 OK code: 200 - duration: 32.374917ms + duration: 29.954917ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -768,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:31 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5e10427-2c86-437e-9316-50bb4bf76f86 + - 56b00c05-d99c-4d95-bb96-97f929013bda status: 200 OK code: 200 - duration: 127.042958ms + duration: 28.311041ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f34b4fb5-70bc-48df-be17-b042f8e7f551 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -817,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.325693Z","custom_routes_propagation_enabled":false,"id":"f34b4fb5-70bc-48df-be17-b042f8e7f551","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-06-10T15:29:29.325693Z"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "405" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2901fff1-ef4b-4c31-88f7-53b13c56ce3c + - aea077ba-7121-48b9-9c33-b2bad2f85756 status: 200 OK code: 200 - duration: 105.522125ms + duration: 34.230917ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc method: GET response: proto: HTTP/2.0 @@ -866,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 851 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":true,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.495405Z"}' headers: Content-Length: - - "851" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69b0feb0-f1a9-41ea-9784-f91e9cae5364 + - 3ea293cd-92e9-442f-9e46-a1ce0379878a status: 200 OK code: 200 - duration: 120.286792ms + duration: 31.785333ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips method: GET response: proto: HTTP/2.0 @@ -915,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 825 uncompressed: false - body: '{"ips":[],"total_count":0}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}],"total_count":2}' headers: Content-Length: - - "27" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83006f81-27e6-4386-a045-d1b4895e5096 + - 33c297c5-b857-4597-9a26-af4170316c94 status: 200 OK code: 200 - duration: 125.090083ms + duration: 54.869875ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -964,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c26f604-d1eb-4fb4-85b1-9e717b1dc32c + - a8f3e0ff-8f01-4355-ac94-df561aa77821 status: 200 OK code: 200 - duration: 27.472542ms + duration: 25.893041ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 26 uncompressed: false - body: '{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null}' + body: '{"ips":[],"total_count":0}' headers: Content-Length: - - "411" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1454d068-e4b7-4d9b-9717-88cb19c7f573 + - 8ac8d434-b85d-42c5-a0fd-051a8ed78180 status: 200 OK code: 200 - duration: 27.184333ms + duration: 65.17975ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: GET response: proto: HTTP/2.0 @@ -1062,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}' + body: '{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28640382-a5be-446f-aa43-142a0320d988 + - 403825ce-3c87-4277-a1e3-51b9b7481a9d status: 200 OK code: 200 - duration: 27.410208ms + duration: 32.841416ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f method: GET response: proto: HTTP/2.0 @@ -1111,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 399 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null}' headers: Content-Length: - - "1093" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66522770-a895-4c6d-80f3-6999c7156249 + - 2852de8c-71b1-4368-a415-996328fff336 status: 200 OK code: 200 - duration: 25.930709ms + duration: 40.991916ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -1160,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 313d3143-c5cd-4a96-bc9f-aefbaddb199d + - 6cf34ac8-07e2-466b-ab91-9f4c17e4f15b status: 200 OK code: 200 - duration: 29.944167ms + duration: 25.526125ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -1209,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 1068 uncompressed: false - body: '{"ips":[],"total_count":0}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "27" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f41de79-e64e-46a3-ab49-057f38c54cd9 + - aa7e39b0-1782-4abe-b885-951cbcec46ff status: 200 OK code: 200 - duration: 102.852958ms + duration: 32.151208ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -1258,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 851 + content_length: 26 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}],"total_count":2}' + body: '{"ips":[],"total_count":0}' headers: Content-Length: - - "851" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffb0c37a-73bb-4a0b-a1fa-c9dabd9ab637 + - 1f345f17-ef2d-4634-9aeb-d63d0265c2a6 status: 200 OK code: 200 - duration: 120.888709ms + duration: 58.580042ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips method: GET response: proto: HTTP/2.0 @@ -1307,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 825 uncompressed: false - body: '{"ips":[],"total_count":0}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}],"total_count":2}' headers: Content-Length: - - "27" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fc13467-4802-4b6e-b518-4a8643388a96 + - 28b8232e-8d58-465f-a2ff-05b68ad962d8 status: 200 OK code: 200 - duration: 222.566375ms + duration: 58.665459ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -1356,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 851 + content_length: 26 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}],"total_count":2}' + body: '{"ips":[],"total_count":0}' headers: Content-Length: - - "851" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 487d30a7-3a49-47df-a718-a670f0b122cc + - c571331e-fdcc-4b82-b091-cd135c1d9eaf status: 200 OK code: 200 - duration: 222.595041ms + duration: 49.381583ms - id: 28 request: proto: HTTP/1.1 @@ -1396,7 +1398,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips method: GET response: @@ -1405,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 851 + content_length: 825 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}],"total_count":2}' headers: Content-Length: - - "851" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dfc83c6-594f-4e06-b429-ec8067be3017 + - aa8e9582-2c6b-40e7-8722-edf6674dfcfa status: 200 OK code: 200 - duration: 126.66425ms + duration: 57.408041ms - id: 29 request: proto: HTTP/1.1 @@ -1445,8 +1447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc method: GET response: proto: HTTP/2.0 @@ -1454,20 +1456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 393 uncompressed: false - body: '{"ips":[],"total_count":0}' + body: '{"created_at":"2025-06-30T15:02:07.430168Z","custom_routes_propagation_enabled":true,"id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc","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-06-30T15:02:07.495405Z"}' headers: Content-Length: - - "27" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61b5d74e-b423-4d97-a08b-118b89c7194e + - 56a6c284-787f-4513-9572-2b3a8b7872ca status: 200 OK code: 200 - duration: 140.092291ms + duration: 35.511ms - id: 30 request: proto: HTTP/1.1 @@ -1494,8 +1496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f34b4fb5-70bc-48df-be17-b042f8e7f551 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 26 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.325693Z","custom_routes_propagation_enabled":false,"id":"f34b4fb5-70bc-48df-be17-b042f8e7f551","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-06-10T15:29:29.325693Z"}' + body: '{"ips":[],"total_count":0}' headers: Content-Length: - - "405" + - "26" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fec7d4b-f5b5-4060-812c-7f851ea2ab3f + - d2c72906-998f-4608-a265-53e551ff87b0 status: 200 OK code: 200 - duration: 143.588333ms + duration: 49.924125ms - id: 31 request: proto: HTTP/1.1 @@ -1543,8 +1545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips method: GET response: proto: HTTP/2.0 @@ -1552,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 825 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1093" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:32 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb5abcc9-30a8-4001-a05d-0a8a386af39e + - 77304c41-3033-42c7-b92c-5ca528b55a02 status: 200 OK code: 200 - duration: 25.969333ms + duration: 59.031375ms - id: 32 request: proto: HTTP/1.1 @@ -1592,8 +1594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -1601,20 +1603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 1068 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "411" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7937503d-cabd-4289-9114-88d6d23f7e47 + - 1ec01e55-87b8-4a09-9d26-75112f2d4af5 status: 200 OK code: 200 - duration: 28.618542ms + duration: 23.096792ms - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f method: GET response: proto: HTTP/2.0 @@ -1650,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 411 + content_length: 399 uncompressed: false - body: '{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null}' headers: Content-Length: - - "411" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f8e487b-7181-435c-af5f-6964fc29db14 + - 5db0ddfd-f95d-4741-8f8d-31aa52864c62 status: 200 OK code: 200 - duration: 29.102042ms + duration: 35.943209ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 399 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}' headers: Content-Length: - - "1093" + - "399" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df9a7658-486f-465b-abd9-2ed9ee3db4e6 + - 564c83e4-94ac-4970-a7df-120d971f572f status: 200 OK code: 200 - duration: 26.522417ms + duration: 46.98325ms - id: 35 request: proto: HTTP/1.1 @@ -1739,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -1748,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1093 + content_length: 1068 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:29.615046Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a7748b8e-71fe-43af-91e1-38f320b02e12","name":"tf-pn-unruffled-babbage","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:29.615046Z","id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"},{"created_at":"2025-06-10T15:29:29.615046Z","id":"969bdc6e-6822-4ce3-ad7a-f92f9f5e03d6","private_network_id":"a7748b8e-71fe-43af-91e1-38f320b02e12","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:dd6b::/64","updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}],"tags":[],"updated_at":"2025-06-10T15:29:29.615046Z","vpc_id":"f34b4fb5-70bc-48df-be17-b042f8e7f551"}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "1093" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 344990a3-276d-446d-bc1b-f3bfa0af6820 + - d9369a9e-19b3-49bd-afc1-c9c6e873a454 status: 200 OK code: 200 - duration: 27.5455ms + duration: 32.055333ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: GET response: proto: HTTP/2.0 @@ -1797,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 1068 uncompressed: false - body: '{"ips":[],"total_count":0}' + body: '{"created_at":"2025-06-30T15:02:07.650716Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2a476dfe-6e76-439c-839f-e03e009aa04c","name":"tf-pn-vigilant-satoshi","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.650716Z","id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"},{"created_at":"2025-06-30T15:02:07.650716Z","id":"cff34dc9-867a-44fd-a97b-8d36f485900e","private_network_id":"2a476dfe-6e76-439c-839f-e03e009aa04c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5fd0::/64","updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}],"tags":[],"updated_at":"2025-06-30T15:02:07.650716Z","vpc_id":"bcb84ce0-a3ba-4985-852a-4cbd21a62ebc"}' headers: Content-Length: - - "27" + - "1068" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c01ebe94-763e-49df-a083-e197044a0e0f + - eb4ec876-afcc-4716-857b-b89af008c3d1 status: 200 OK code: 200 - duration: 105.07975ms + duration: 29.156666ms - id: 37 request: proto: HTTP/1.1 @@ -1837,7 +1839,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips method: GET response: @@ -1846,20 +1848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 851 + content_length: 825 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:30.731891Z","id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.731891Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:30.712342Z","id":"7a566171-180d-4121-86ca-c446f6ec3d09","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1c72602a-f7e0-45fd-a817-a126f0d0d68e"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-10T15:29:30.712342Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.952803Z","id":"6351c66e-638a-4925-be77-2cb82e861f6f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.952803Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:10.950270Z","id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9fca300c-c2d8-4c0f-a05a-f1fa2c396514"},"tags":["terraform-test","data_scaleway_ipam_ips"],"updated_at":"2025-06-30T15:02:10.950270Z","zone":null}],"total_count":2}' headers: Content-Length: - - "851" + - "825" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,11 +1869,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 792da408-5c39-41df-ba4b-33c4a116ff7f + - f3baeec6-05ac-4bb4-84d2-4c81e1ef667c status: 200 OK code: 200 - duration: 117.0025ms + duration: 52.826208ms - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&page=1&resource_type=unknown_type&tags=terraform-test&tags=data_scaleway_ipam_ips&zonal=fr-par-2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 26 + uncompressed: false + body: '{"ips":[],"total_count":0}' + headers: + Content-Length: + - "26" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b33ca5e-a99d-4039-9075-60a4afbb12a8 + status: 200 OK + code: 200 + duration: 59.296416ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1888,8 +1939,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: DELETE response: proto: HTTP/2.0 @@ -1906,9 +1957,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,11 +1967,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba17e93f-1626-477c-bd5e-92c9b4e885dc + - 4daec9ae-6887-45cb-bc66-59938e228dad status: 204 No Content code: 204 - duration: 51.801125ms - - id: 39 + duration: 62.866125ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1937,8 +1988,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f method: DELETE response: proto: HTTP/2.0 @@ -1955,9 +2006,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:33 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,11 +2016,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf8fe98-7ca4-44a3-91d1-6700ad655e69 + - e8a8f5de-48ad-4c9d-abe2-8f1e156057a2 status: 204 No Content code: 204 - duration: 154.4655ms - - id: 40 + duration: 83.303459ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1984,8 +2035,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a7748b8e-71fe-43af-91e1-38f320b02e12 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2a476dfe-6e76-439c-839f-e03e009aa04c method: DELETE response: proto: HTTP/2.0 @@ -2002,9 +2053,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:35 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2012,11 +2063,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83db9447-10c3-4276-89c7-f44c586b3780 + - 07325a22-0a21-4f63-8891-3b97efcaf800 status: 204 No Content code: 204 - duration: 1.497596708s - - id: 41 + duration: 3.3995035s + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2031,8 +2082,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f34b4fb5-70bc-48df-be17-b042f8e7f551 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/bcb84ce0-a3ba-4985-852a-4cbd21a62ebc method: DELETE response: proto: HTTP/2.0 @@ -2049,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:35 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2059,11 +2110,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 435850a2-7914-43a3-9674-4539875553fc + - 7d6fcd26-95b3-46d3-a34f-4e62e6942d5f status: 204 No Content code: 204 - duration: 176.64325ms - - id: 42 + duration: 86.804958ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2078,8 +2129,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7a566171-180d-4121-86ca-c446f6ec3d09 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/6351c66e-638a-4925-be77-2cb82e861f6f method: GET response: proto: HTTP/2.0 @@ -2089,7 +2140,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"7a566171-180d-4121-86ca-c446f6ec3d09","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"6351c66e-638a-4925-be77-2cb82e861f6f","type":"not_found"}' headers: Content-Length: - "123" @@ -2098,9 +2149,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:35 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2108,11 +2159,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31cbb36e-1707-428a-bb56-8305d9f248a5 + - febd867b-c933-4781-a32c-806151685aac status: 404 Not Found code: 404 - duration: 34.7135ms - - id: 43 + duration: 27.314083ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2127,8 +2178,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/e6ed3dfe-94e5-463e-82a7-6a73266dfa59 method: GET response: proto: HTTP/2.0 @@ -2138,7 +2189,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"abcbe1ee-6a1e-4ce9-8751-e658bdc5ccf7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"e6ed3dfe-94e5-463e-82a7-6a73266dfa59","type":"not_found"}' headers: Content-Length: - "123" @@ -2147,9 +2198,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:35 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2157,7 +2208,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3aed7ab4-fa31-4326-adfa-0d8d6d5a6629 + - 08fde929-a567-4b17-a16c-75f1d8759e20 status: 404 Not Found code: 404 - duration: 25.897917ms + duration: 31.924083ms diff --git a/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml b/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml index bace6d8a2f..4650f3553b 100644 --- a/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.685631Z","custom_routes_propagation_enabled":false,"id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1","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-06-10T15:29:42.685631Z"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "405" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:42 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50fa75f4-63bd-48e9-bcda-b8cb2511cd62 - status: 200 OK - code: 200 - duration: 177.322542ms + - f1882d99-5251-4c04-91b2-ac3548af49b7 + status: 500 Internal Server Error + code: 500 + duration: 160.841875ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/18c0cc84-1f64-4d65-bd2f-abe72ba329e1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.685631Z","custom_routes_propagation_enabled":false,"id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1","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-06-10T15:29:42.685631Z"}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":false,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.598920Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:42 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,29 +99,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 934f56dd-17a4-43d9-a4b4-ff75cda63035 + - 8864abee-632b-4db8-a7e0-e709a423502e status: 200 OK code: 200 - duration: 184.6955ms + duration: 60.491041ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 170 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-hardcore-booth","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -127,20 +129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.950990Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","name":"tf-pn-hardcore-booth","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:42.950990Z","id":"e692fec5-d939-4ff5-99d8-3701bc8d3840","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"},{"created_at":"2025-06-10T15:29:42.950990Z","id":"d5996c1e-1c9d-4af7-8618-58d7724cde3b","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:38cc::/64","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}],"tags":[],"updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' headers: Content-Length: - - "1090" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1007c6c-326d-40ce-a9a1-312a1f4262c6 + - 7bb04a00-ffc0-4f1e-a0e7-6a13f152ef28 status: 200 OK code: 200 - duration: 728.682958ms + duration: 41.987292ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0169631f-110b-41d0-9c70-a5b82e3501cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 method: GET response: proto: HTTP/2.0 @@ -176,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.950990Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","name":"tf-pn-hardcore-booth","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:42.950990Z","id":"e692fec5-d939-4ff5-99d8-3701bc8d3840","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"},{"created_at":"2025-06-10T15:29:42.950990Z","id":"d5996c1e-1c9d-4af7-8618-58d7724cde3b","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:38cc::/64","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}],"tags":[],"updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' headers: Content-Length: - - "1090" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:43 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +199,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a3bd651-a286-4857-8deb-ef8a3d1061a3 + - 54e4e11c-907e-43b4-81e8-12ce51ae3984 status: 200 OK code: 200 - duration: 28.980625ms + duration: 26.1415ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 397 + content_length: 213 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","name":"test_redis_endpoints","version":"7.0.5","tags":null,"node_type":"RED1-XS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","cluster_size":3,"acl_rules":null,"endpoints":[{"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","service_ips":null,"ipam_config":{}}}],"tls_enabled":false,"cluster_settings":null}' + body: '{"name":"tf-pn-gracious-shamir","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -227,20 +229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 1067 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' headers: Content-Length: - - "733" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e74c9ed3-6eb1-4e8c-9f75-1ce492ac6b55 + - c89eb0e4-19bc-4fa8-bfa3-b562dd9451e9 status: 200 OK code: 200 - duration: 1.74076825s + duration: 598.585334ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 method: GET response: proto: HTTP/2.0 @@ -276,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 1067 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' headers: Content-Length: - - "733" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:45 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,48 +299,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd99d43d-035f-45a2-ad34-4f51c213cea9 + - 8c6799d2-ccb2-47e6-b24a-467267dc0c51 status: 200 OK code: 200 - duration: 161.226708ms + duration: 37.087292ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 397 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test_redis_endpoints","version":"7.0.5","tags":null,"node_type":"RED1-XS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","cluster_size":3,"acl_rules":null,"endpoints":[{"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","service_ips":null,"ipam_config":{}}}],"tls_enabled":false,"cluster_settings":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:50 GMT + - Mon, 30 Jun 2025 15:02:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5e3ea52-e09f-4553-bf14-097136fe99b0 + - 0c2ecded-44bd-4b83-9212-6f6f281c7370 status: 200 OK code: 200 - duration: 196.048875ms + duration: 6.090061042s - id: 7 request: proto: HTTP/1.1 @@ -365,8 +369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -374,20 +378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:29:55 GMT + - Mon, 30 Jun 2025 15:02:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64cc1285-aba5-4feb-b7bd-c21499ff0ade + - 9c0de961-8df0-4454-a3e7-579fbc96d7f5 status: 200 OK code: 200 - duration: 200.623333ms + duration: 235.834917ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -423,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:01 GMT + - Mon, 30 Jun 2025 15:02:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fd38960-6db5-4115-bcd4-8e2e61440374 + - d59e99e9-1985-483b-9f01-2c98f6a50a9f status: 200 OK code: 200 - duration: 211.748416ms + duration: 108.216833ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -472,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:06 GMT + - Mon, 30 Jun 2025 15:02:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2feda6d0-49f3-4359-8620-c4c58023c7c6 + - 13e6a9ca-1465-412a-8d2a-f2c3b47c58c7 status: 200 OK code: 200 - duration: 222.63925ms + duration: 110.206584ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -521,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:11 GMT + - Mon, 30 Jun 2025 15:02:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3833ad09-f0bd-492e-b0c2-084390272d93 + - f5cbfc6c-f493-4c40-b4a5-a477bebddd05 status: 200 OK code: 200 - duration: 226.397709ms + duration: 144.023667ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -570,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:16 GMT + - Mon, 30 Jun 2025 15:02:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edb94bb4-4357-4863-aac6-dab1d006b014 + - b5e396b2-35b1-44fa-86b9-4a6a211c6ab0 status: 200 OK code: 200 - duration: 207.607583ms + duration: 117.248333ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -619,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:22 GMT + - Mon, 30 Jun 2025 15:02:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 238aa70a-b397-45d3-a41a-a310adc46ce8 + - 58b9e777-e416-4a28-8138-c3fb66f45acc status: 200 OK code: 200 - duration: 238.70275ms + duration: 119.151667ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -668,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:27 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f549fad-465c-4619-aa1c-dac66b7ef84f + - 3150c702-1d4b-45d0-b0e1-aafc0b9d0425 status: 200 OK code: 200 - duration: 186.321ms + duration: 94.736458ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -717,20 +721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:32 GMT + - Mon, 30 Jun 2025 15:02:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b2d66da-66ba-4c9a-8998-26a0a077fac5 + - 5fd8016c-677b-47bb-b6ad-ef6b1a6ba89b status: 200 OK code: 200 - duration: 191.029292ms + duration: 114.803875ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -766,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:37 GMT + - Mon, 30 Jun 2025 15:02:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2004a280-cccb-4f87-a634-abab2a283375 + - 54c8b6b3-a2cb-4a5b-93b3-63d22add3dad status: 200 OK code: 200 - duration: 165.646125ms + duration: 118.271208ms - id: 16 request: proto: HTTP/1.1 @@ -806,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -815,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Mon, 30 Jun 2025 15:03:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b977740-fa2e-4286-8844-b87e16714475 + - d7ad974d-a873-4d29-bccd-1211ed8b8f0d status: 200 OK code: 200 - duration: 172.566417ms + duration: 130.995ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -864,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:03:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db23ec4e-4921-4999-a1ce-33f4a92c5a89 + - 4189f881-e102-40b2-9066-ebd7dba95c92 status: 200 OK code: 200 - duration: 174.549667ms + duration: 173.110083ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -913,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:53 GMT + - Mon, 30 Jun 2025 15:03:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c656e14-608e-4a43-b762-91891a5fdfd1 + - 7513d250-e1de-4586-8581-c0a07d1957c8 status: 200 OK code: 200 - duration: 184.326333ms + duration: 118.72625ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -962,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:58 GMT + - Mon, 30 Jun 2025 15:03:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3496afaf-c229-461f-8f25-4e5d0418c8c0 + - b641dcdb-7771-4a18-8deb-0d4cd7d275a7 status: 200 OK code: 200 - duration: 196.738041ms + duration: 691.609833ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1011,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:03 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b54e33ee-a7f4-4644-a54f-8900aac27ab8 + - a202246a-df9c-4de0-b7fc-85744a83825b status: 200 OK code: 200 - duration: 174.736791ms + duration: 99.669791ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1060,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 733 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "733" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:03:28 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ab9e915-6878-4965-a3dc-059dbc08c159 + - 04f83c7b-61de-4a77-89ae-3c64d28a5e48 status: 200 OK code: 200 - duration: 231.947833ms + duration: 96.303792ms - id: 22 request: proto: HTTP/1.1 @@ -1100,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1109,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:13 GMT + - Mon, 30 Jun 2025 15:03:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1343e9f7-7ae7-4f2c-ac0f-a5a1ef7ff5ac + - a6922037-e257-4527-a5d3-4a63ac7e6c27 status: 200 OK code: 200 - duration: 177.773125ms + duration: 92.727875ms - id: 23 request: proto: HTTP/1.1 @@ -1149,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1158,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f077b87-999f-4f46-be2c-51d3196dc49c + - 3469b61b-03ae-4cab-a2cc-1ff6ef38c2c5 status: 200 OK code: 200 - duration: 202.85225ms + duration: 104.322292ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1207,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:24 GMT + - Mon, 30 Jun 2025 15:03:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0059960d-f708-44e2-9f29-37a6bf1f658d + - f571586b-423a-4061-a345-bc3624673bbb status: 200 OK code: 200 - duration: 203.8325ms + duration: 121.778875ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1256,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:29 GMT + - Mon, 30 Jun 2025 15:03:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5866725b-2f1b-4722-acad-ce7681f269ba + - adfbb6b4-65eb-41e3-b5df-de494c4800c9 status: 200 OK code: 200 - duration: 216.257ms + duration: 121.830208ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1305,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:34 GMT + - Mon, 30 Jun 2025 15:03:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 305fc36e-3b15-45c3-a856-f287538e4add + - 2c123dd5-a3a8-4905-bb34-3d856344f0c5 status: 200 OK code: 200 - duration: 192.078209ms + duration: 231.354625ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1354,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:39 GMT + - Mon, 30 Jun 2025 15:03:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 032a868d-5cf7-476a-bd19-afa7c7ea5afe + - 50163019-41fc-4a27-8d46-7433be652765 status: 200 OK code: 200 - duration: 188.037208ms + duration: 113.975ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1403,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:45 GMT + - Mon, 30 Jun 2025 15:04:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1424,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b2b72d8-47a2-4793-9ade-3ea228b78450 + - d94930a4-b117-4d9f-99d6-2561e3d3cad9 status: 200 OK code: 200 - duration: 288.654833ms + duration: 114.051083ms - id: 29 request: proto: HTTP/1.1 @@ -1443,8 +1447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1452,20 +1456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:50 GMT + - Mon, 30 Jun 2025 15:04:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94437b1f-7b59-40cb-b780-09bfa9a6cb28 + - be8af18f-b217-48ae-8b72-c7dfd59f4a9e status: 200 OK code: 200 - duration: 282.079709ms + duration: 110.766958ms - id: 30 request: proto: HTTP/1.1 @@ -1492,8 +1496,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1501,20 +1505,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:55 GMT + - Mon, 30 Jun 2025 15:04:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,10 +1526,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0803e1dd-7b49-43ea-a85f-7d290aa12c68 + - 6ee2815a-b926-425b-a87c-f676eeb577a0 status: 200 OK code: 200 - duration: 195.300583ms + duration: 102.63975ms - id: 31 request: proto: HTTP/1.1 @@ -1541,8 +1545,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1550,20 +1554,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:00 GMT + - Mon, 30 Jun 2025 15:04:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1571,10 +1575,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85fb9dfd-9d9e-4203-9d38-fd6381ec5dc4 + - 20c176ab-ff5a-4ead-82cb-754e1c550f53 status: 200 OK code: 200 - duration: 243.3545ms + duration: 133.411042ms - id: 32 request: proto: HTTP/1.1 @@ -1590,8 +1594,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1599,20 +1603,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:06 GMT + - Mon, 30 Jun 2025 15:04:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1620,10 +1624,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59ed4de6-ccb2-439d-b54d-ff73f21d4bb2 + - 15667a0d-688f-49f1-957e-02663ac96091 status: 200 OK code: 200 - duration: 282.087375ms + duration: 135.568208ms - id: 33 request: proto: HTTP/1.1 @@ -1639,8 +1643,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1648,20 +1652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:11 GMT + - Mon, 30 Jun 2025 15:04:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1669,10 +1673,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff08924b-0180-4349-9f4a-e8a1a916bbcc + - f03f154b-f9e8-4b42-86f1-33404fc9c6b7 status: 200 OK code: 200 - duration: 182.162667ms + duration: 120.968875ms - id: 34 request: proto: HTTP/1.1 @@ -1688,8 +1692,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1697,20 +1701,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:16 GMT + - Mon, 30 Jun 2025 15:04:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1718,10 +1722,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b74b2e9b-9b54-4dd1-b431-4f0aa2f6de82 + - a2e6a5ce-4756-407b-b04c-e4ca22bb1c7c status: 200 OK code: 200 - duration: 219.755625ms + duration: 195.427416ms - id: 35 request: proto: HTTP/1.1 @@ -1737,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1746,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:21 GMT + - Mon, 30 Jun 2025 15:04:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1767,10 +1771,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1742a261-f657-49ec-ba26-5c304d52e4dc + - 8bb44533-54c3-4f10-a9cd-bf2f43f34996 status: 200 OK code: 200 - duration: 159.097292ms + duration: 111.456958ms - id: 36 request: proto: HTTP/1.1 @@ -1786,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1795,20 +1799,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:27 GMT + - Mon, 30 Jun 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1816,10 +1820,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17de59a8-2edd-4ded-9920-ba77271123d7 + - 96ed1d4c-5d37-45d6-b3f9-dc50bcc969c1 status: 200 OK code: 200 - duration: 175.898792ms + duration: 124.125417ms - id: 37 request: proto: HTTP/1.1 @@ -1835,8 +1839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1844,20 +1848,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 758 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:31:10.608339Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "758" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Mon, 30 Jun 2025 15:04:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1865,10 +1869,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2f3be8d-789f-4549-8a41-5081d4d5f2f0 + - 0890efa5-5e11-485d-92a5-fd53a5b4ac14 status: 200 OK code: 200 - duration: 159.433042ms + duration: 94.061875ms - id: 38 request: proto: HTTP/1.1 @@ -1884,8 +1888,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1893,20 +1897,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "751" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:37 GMT + - Mon, 30 Jun 2025 15:04:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,10 +1918,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9325fde8-810e-4bbd-8b3d-229ad1f7d5bc + - 7ed07270-1c5e-42ac-875a-19957c7bd432 status: 200 OK code: 200 - duration: 186.009583ms + duration: 122.806625ms - id: 39 request: proto: HTTP/1.1 @@ -1933,8 +1937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1942,20 +1946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "751" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:37 GMT + - Mon, 30 Jun 2025 15:05:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1963,10 +1967,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 348d8fb0-a655-4d44-97f7-95e3c261b343 + - c4c8e1db-db94-40d1-89bc-a7f01c6adbfd status: 200 OK code: 200 - duration: 235.988042ms + duration: 219.124209ms - id: 40 request: proto: HTTP/1.1 @@ -1982,8 +1986,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0169631f-110b-41d0-9c70-a5b82e3501cd&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -1991,20 +1995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 732 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1594" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:37 GMT + - Mon, 30 Jun 2025 15:05:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2012,10 +2016,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39e450d9-920e-4d62-b030-3254726829ae + - 0d2a1e2d-a188-44bd-91d2-034c7cb1b3cb status: 200 OK code: 200 - duration: 52.579875ms + duration: 111.917083ms - id: 41 request: proto: HTTP/1.1 @@ -2031,8 +2035,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/18c0cc84-1f64-4d65-bd2f-abe72ba329e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2040,20 +2044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 732 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.685631Z","custom_routes_propagation_enabled":false,"id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1","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-06-10T15:29:42.685631Z"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "405" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:37 GMT + - Mon, 30 Jun 2025 15:05:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2061,10 +2065,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9759bb56-bf61-4e45-8880-015a84bef6fa + - c973479e-c81f-44d6-a2a0-ad69bedd6754 status: 200 OK code: 200 - duration: 28.168708ms + duration: 113.724917ms - id: 42 request: proto: HTTP/1.1 @@ -2080,8 +2084,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0169631f-110b-41d0-9c70-a5b82e3501cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2089,20 +2093,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 725 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.950990Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","name":"tf-pn-hardcore-booth","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:42.950990Z","id":"e692fec5-d939-4ff5-99d8-3701bc8d3840","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"},{"created_at":"2025-06-10T15:29:42.950990Z","id":"d5996c1e-1c9d-4af7-8618-58d7724cde3b","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:38cc::/64","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}],"tags":[],"updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1090" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,10 +2114,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79430437-58a9-4c8c-b65a-249e88199021 + - 43216a34-cf2a-4ac6-99b5-f38a87d5ed3f status: 200 OK code: 200 - duration: 136.024375ms + duration: 119.093792ms - id: 43 request: proto: HTTP/1.1 @@ -2129,8 +2133,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2138,20 +2142,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "751" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2159,10 +2163,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fa05e01-e574-4bfa-b4ff-d460dc429d32 + - 588ca370-8175-4ade-874f-099e4f725b54 status: 200 OK code: 200 - duration: 180.650834ms + duration: 129.135167ms - id: 44 request: proto: HTTP/1.1 @@ -2178,8 +2182,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0169631f-110b-41d0-9c70-a5b82e3501cd&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2187,20 +2191,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "1594" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2208,10 +2212,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4388bb50-5095-4529-8c36-e5ff9218f338 + - d0415cb0-8206-4704-8427-252c5ddfe993 status: 200 OK code: 200 - duration: 55.547166ms + duration: 50.0755ms - id: 45 request: proto: HTTP/1.1 @@ -2227,8 +2231,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/18c0cc84-1f64-4d65-bd2f-abe72ba329e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 method: GET response: proto: HTTP/2.0 @@ -2236,20 +2240,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.685631Z","custom_routes_propagation_enabled":false,"id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1","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-06-10T15:29:42.685631Z"}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2257,10 +2261,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68cc1e32-817c-4df4-b8fb-7160cce0feb3 + - e475778b-ef9f-4ffd-a965-3d658c3ccf64 status: 200 OK code: 200 - duration: 114.11475ms + duration: 29.213042ms - id: 46 request: proto: HTTP/1.1 @@ -2276,8 +2280,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0169631f-110b-41d0-9c70-a5b82e3501cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 method: GET response: proto: HTTP/2.0 @@ -2285,20 +2289,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.950990Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","name":"tf-pn-hardcore-booth","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:42.950990Z","id":"e692fec5-d939-4ff5-99d8-3701bc8d3840","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"},{"created_at":"2025-06-10T15:29:42.950990Z","id":"d5996c1e-1c9d-4af7-8618-58d7724cde3b","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:38cc::/64","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}],"tags":[],"updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' headers: Content-Length: - - "1090" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2306,10 +2310,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 502dccdf-7221-4734-bec6-03c267282de5 + - e1ffb072-d516-404c-aa77-ae79d0e0c57e status: 200 OK code: 200 - duration: 28.188625ms + duration: 32.366458ms - id: 47 request: proto: HTTP/1.1 @@ -2325,8 +2329,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2334,20 +2338,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "751" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2355,10 +2359,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffec0a8e-6e61-43d6-b685-224325a34cb2 + - 95219e8c-a16c-4635-b2bf-3a0cad188e7a status: 200 OK code: 200 - duration: 171.710542ms + duration: 101.652958ms - id: 48 request: proto: HTTP/1.1 @@ -2374,8 +2378,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0169631f-110b-41d0-9c70-a5b82e3501cd&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2383,20 +2387,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "1594" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:38 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2404,10 +2408,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0781bd56-6119-43e9-907d-0f3179c2ef2b + - eb8db476-a4f5-4d2d-b969-b45cf724c157 status: 200 OK code: 200 - duration: 49.100583ms + duration: 58.767792ms - id: 49 request: proto: HTTP/1.1 @@ -2423,8 +2427,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 method: GET response: proto: HTTP/2.0 @@ -2432,20 +2436,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' headers: Content-Length: - - "1594" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2453,10 +2457,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd2d42c9-b5ac-4531-9f94-6803d217afb5 + - bd7e2ce1-fdff-469c-a54c-97e45a75100f status: 200 OK code: 200 - duration: 110.20825ms + duration: 28.51925ms - id: 50 request: proto: HTTP/1.1 @@ -2472,8 +2476,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 method: GET response: proto: HTTP/2.0 @@ -2481,20 +2485,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' headers: Content-Length: - - "1594" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2502,10 +2506,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55ea7cb9-2cbc-484f-89b1-e1b7c6ee526c + - 2f2b3dde-1e8c-417f-b701-77c86a7301a3 status: 200 OK code: 200 - duration: 122.428834ms + duration: 30.960791ms - id: 51 request: proto: HTTP/1.1 @@ -2521,8 +2525,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2530,20 +2534,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 725 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1594" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2551,10 +2555,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b936130-cc98-4f33-b8b6-333cea0ffed3 + - 10d2a2d9-dfc9-4645-b1f9-83fc5d2500cb status: 200 OK code: 200 - duration: 120.760083ms + duration: 127.097291ms - id: 52 request: proto: HTTP/1.1 @@ -2570,8 +2574,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/18c0cc84-1f64-4d65-bd2f-abe72ba329e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2579,20 +2583,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 1546 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.685631Z","custom_routes_propagation_enabled":false,"id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1","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-06-10T15:29:42.685631Z"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "405" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2600,10 +2604,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df7756c-b265-4b29-bb26-e2c77b468d09 + - 04930359-2087-4f24-98e8-2274da605dc9 status: 200 OK code: 200 - duration: 26.908916ms + duration: 60.948125ms - id: 53 request: proto: HTTP/1.1 @@ -2619,8 +2623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0169631f-110b-41d0-9c70-a5b82e3501cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2628,20 +2632,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1546 uncompressed: false - body: '{"created_at":"2025-06-10T15:29:42.950990Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","name":"tf-pn-hardcore-booth","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:29:42.950990Z","id":"e692fec5-d939-4ff5-99d8-3701bc8d3840","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"},{"created_at":"2025-06-10T15:29:42.950990Z","id":"d5996c1e-1c9d-4af7-8618-58d7724cde3b","private_network_id":"0169631f-110b-41d0-9c70-a5b82e3501cd","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:38cc::/64","updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}],"tags":[],"updated_at":"2025-06-10T15:29:42.950990Z","vpc_id":"18c0cc84-1f64-4d65-bd2f-abe72ba329e1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "1090" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2649,10 +2653,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f1149d0-2de8-4643-9964-d333e656025a + - 855d6ffd-66c5-4519-a81c-671c14ff792a status: 200 OK code: 200 - duration: 32.3155ms + duration: 58.458125ms - id: 54 request: proto: HTTP/1.1 @@ -2668,8 +2672,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2677,20 +2681,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "751" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2698,10 +2702,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a838e0b5-de44-4f9a-b69f-0c6eace423e2 + - 5d0e5cc7-38da-40ec-a6c3-5a49440367a8 status: 200 OK code: 200 - duration: 167.520083ms + duration: 52.851583ms - id: 55 request: proto: HTTP/1.1 @@ -2717,8 +2721,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=0169631f-110b-41d0-9c70-a5b82e3501cd&project_id=105bdce1-64c0-48ab-899d-868455867ecf&resource_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2726,20 +2730,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "1594" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:39 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2747,10 +2751,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e60c80be-e11c-46a5-9e4d-4bea2a9ed25a + - 9a269e24-d5a6-494a-afde-e3182a994049 status: 200 OK code: 200 - duration: 45.193542ms + duration: 48.050583ms - id: 56 request: proto: HTTP/1.1 @@ -2766,8 +2770,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 method: GET response: proto: HTTP/2.0 @@ -2775,20 +2779,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' headers: Content-Length: - - "1594" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2796,10 +2800,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ccd8382-e32c-4974-9040-c5bbcb4a3ceb + - c85e041b-f9c4-45d2-984e-716e6c27b4ed status: 200 OK code: 200 - duration: 129.294209ms + duration: 29.525416ms - id: 57 request: proto: HTTP/1.1 @@ -2815,8 +2819,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=dc7c61b5-b5a3-4187-b74b-9555cd86d8aa&resource_type=redis_cluster + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 method: GET response: proto: HTTP/2.0 @@ -2824,20 +2828,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1594 + content_length: 1067 uncompressed: false - body: '{"ips":[{"address":"172.16.32.4/22","created_at":"2025-06-10T15:29:44.787055Z","id":"36dfd0b1-6595-407e-8645-824dcc5bc406","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:10:0A:6A","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.500269Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-10T15:29:44.787055Z","id":"5ebd39e1-2ea8-488b-95cf-dfbe86489670","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:13:63:D1","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.040133Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-10T15:29:44.787055Z","id":"bd5b2e95-8502-4f13-b2fc-d907a03a0065","is_ipv6":false,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","resource":{"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","mac_address":"02:00:00:1C:BE:2B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"e692fec5-d939-4ff5-99d8-3701bc8d3840"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:32:33.272904Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' headers: Content-Length: - - "1594" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2845,10 +2849,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c62c20d3-7974-4f1a-8497-0c2471f08013 + - 6b0b9df5-38dd-42fa-af50-21f3d0055d73 status: 200 OK code: 200 - duration: 113.689166ms + duration: 26.296542ms - id: 58 request: proto: HTTP/1.1 @@ -2864,8 +2868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -2873,20 +2877,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 751 + content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:32.962948Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "751" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:40 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2894,10 +2898,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e59396f-9d64-4fc8-8367-b0680576fc11 + - c3b28333-b5a9-4419-a6a1-a49e05fdd61c status: 200 OK code: 200 - duration: 215.140041ms + duration: 109.937958ms - id: 59 request: proto: HTTP/1.1 @@ -2913,29 +2917,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "754" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2943,10 +2947,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 432ff4a1-0939-4068-ac5e-564e212af2e2 + - f9862971-2c2a-4cdc-87c9-77b3d981a2ff status: 200 OK code: 200 - duration: 1.983764625s + duration: 88.55975ms - id: 60 request: proto: HTTP/1.1 @@ -2962,8 +2966,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2971,20 +2975,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "754" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:42 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2992,10 +2996,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4a54db-a23c-46df-91bd-5ae2f9f578af + - 0c5c1728-dbff-4fd6-81f4-d606c60fafbf status: 200 OK code: 200 - duration: 171.616583ms + duration: 48.2355ms - id: 61 request: proto: HTTP/1.1 @@ -3011,8 +3015,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -3020,20 +3024,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' headers: Content-Length: - - "754" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:48 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3041,10 +3045,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 918bf7bb-f617-46c1-a81b-61c21dc0b679 + - 082bc65c-5ff8-434d-b831-51da4e10d198 status: 200 OK code: 200 - duration: 172.109083ms + duration: 61.485416ms - id: 62 request: proto: HTTP/1.1 @@ -3060,8 +3064,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3069,20 +3073,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:53 GMT + - Mon, 30 Jun 2025 15:05:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3090,10 +3094,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 594364a8-5385-426a-bd83-7dcf80118f36 + - 83b152c4-b302-4f54-8008-e090a4f89ddf status: 200 OK code: 200 - duration: 176.105ms + duration: 114.112833ms - id: 63 request: proto: HTTP/1.1 @@ -3109,29 +3113,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:58 GMT + - Mon, 30 Jun 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3139,10 +3143,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7502517e-f272-4d04-aa37-1ecd5482f3a3 + - c49ec1c5-d32d-4720-924d-c9fbf62283f5 status: 200 OK code: 200 - duration: 184.649375ms + duration: 2.267762083s - id: 64 request: proto: HTTP/1.1 @@ -3158,8 +3162,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3167,20 +3171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:05:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3188,10 +3192,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9e4362f-3f07-4316-84ad-3a6e59c40a25 + - 8f937ead-c7b6-4447-ac9c-8cf1b4bad305 status: 200 OK code: 200 - duration: 198.755542ms + duration: 92.310542ms - id: 65 request: proto: HTTP/1.1 @@ -3207,8 +3211,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3216,20 +3220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:08 GMT + - Mon, 30 Jun 2025 15:05:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3237,10 +3241,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ca71e2b-a7df-44b3-b6a7-3d03699f3741 + - ee167c53-cff4-4670-aca3-c2ba1cf7d8cc status: 200 OK code: 200 - duration: 184.7875ms + duration: 119.117ms - id: 66 request: proto: HTTP/1.1 @@ -3256,8 +3260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3265,20 +3269,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:13 GMT + - Mon, 30 Jun 2025 15:05:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3286,10 +3290,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b9ac571-ea86-4beb-96a3-83ce118be383 + - d7eacd54-9964-4c46-89fe-964f321d4781 status: 200 OK code: 200 - duration: 213.476333ms + duration: 117.3665ms - id: 67 request: proto: HTTP/1.1 @@ -3305,8 +3309,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3314,20 +3318,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:19 GMT + - Mon, 30 Jun 2025 15:05:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3335,10 +3339,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f57dec05-f17c-427f-8d2f-333d96f1519e + - 3e728bc4-1933-4c76-b6b1-5a885a151101 status: 200 OK code: 200 - duration: 190.130416ms + duration: 130.73325ms - id: 68 request: proto: HTTP/1.1 @@ -3354,8 +3358,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3363,20 +3367,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:24 GMT + - Mon, 30 Jun 2025 15:05:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3384,10 +3388,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c3f96f4-a68d-438a-b24b-c8a7c8f7b751 + - 5b1839b3-f6b8-4911-a8c7-de53db950a10 status: 200 OK code: 200 - duration: 210.404917ms + duration: 126.358542ms - id: 69 request: proto: HTTP/1.1 @@ -3403,8 +3407,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3412,20 +3416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:29 GMT + - Mon, 30 Jun 2025 15:05:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3433,10 +3437,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25dcfe4e-5af0-42d3-8976-3d87a030672a + - ad7020e8-602b-411f-902d-bf31045728bf status: 200 OK code: 200 - duration: 158.597917ms + duration: 111.922291ms - id: 70 request: proto: HTTP/1.1 @@ -3452,8 +3456,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3461,20 +3465,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 754 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-10T15:29:44.151532Z","endpoints":[{"id":"d9db2aa8-b2b4-4948-b89d-ef411b4c89da","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"0169631f-110b-41d0-9c70-a5b82e3501cd","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-10T15:32:40.838933Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "754" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:34 GMT + - Mon, 30 Jun 2025 15:05:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3482,10 +3486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aebf1c35-4427-499f-b765-e8a172524754 + - e242af2c-163a-429c-bf88-55fa690f907b status: 200 OK code: 200 - duration: 164.500417ms + duration: 106.28425ms - id: 71 request: proto: HTTP/1.1 @@ -3501,8 +3505,204 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/dc7c61b5-b5a3-4187-b74b-9555cd86d8aa + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:05:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f750cde9-9225-4ef3-91fa-d2a122d79aaf + status: 200 OK + code: 200 + duration: 133.951792ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:06:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eaa3f7d9-6444-4122-9f09-01bb0b0ee705 + status: 200 OK + code: 200 + duration: 125.591458ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:06:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9b14965d-e2a2-4158-ae77-efda4822d9ca + status: 200 OK + code: 200 + duration: 141.739208ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 728 + uncompressed: false + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + headers: + Content-Length: + - "728" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:06:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40d0fc5f-29e8-4f5a-8e1a-12456595e2e5 + status: 200 OK + code: 200 + duration: 115.819792ms + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b method: GET response: proto: HTTP/2.0 @@ -3512,7 +3712,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"cluster","resource_id":"dc7c61b5-b5a3-4187-b74b-9555cd86d8aa","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","type":"not_found"}' headers: Content-Length: - "128" @@ -3521,9 +3721,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:39 GMT + - Mon, 30 Jun 2025 15:06:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3531,11 +3731,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02e243ab-2aa8-4a28-965d-f5651462d5b8 + - a2110fcb-3d54-4512-a845-bcdcad911d71 status: 404 Not Found code: 404 - duration: 42.942333ms - - id: 72 + duration: 49.109125ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3550,8 +3750,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0169631f-110b-41d0-9c70-a5b82e3501cd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 method: DELETE response: proto: HTTP/2.0 @@ -3568,9 +3768,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:41 GMT + - Mon, 30 Jun 2025 15:06:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3578,11 +3778,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 118c815c-ee45-4d4f-bf80-ef1b5c100bf2 + - 53c47a95-133a-4fb6-a58c-68df8c0b2e57 status: 204 No Content code: 204 - duration: 1.555568166s - - id: 73 + duration: 3.320885833s + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3597,8 +3797,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/18c0cc84-1f64-4d65-bd2f-abe72ba329e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 method: DELETE response: proto: HTTP/2.0 @@ -3615,9 +3815,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:41 GMT + - Mon, 30 Jun 2025 15:06:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3625,7 +3825,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8043280f-2862-4103-b6e3-e5b1790406fc + - ecbe922a-fb89-4b47-82c6-de584f68b62a status: 204 No Content code: 204 - duration: 193.043458ms + duration: 133.530333ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml index b7066f28b2..e72e7f2b6c 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 424 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":false,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.472909Z"}' headers: Content-Length: - - "39208" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT - Link: - - ; rel="next",; rel="last" + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,52 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 410434ed-e6a1-419c-abe2-52bf18854815 - X-Total-Count: - - "75" + - a3ad9dd2-9882-4bb0-be55-692351df1f28 status: 200 OK code: 200 - duration: 203.547875ms + duration: 55.683208ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 39208 uncompressed: false - body: '{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "298" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,29 +99,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8284c954-e00c-4a6f-a7ff-2b521c14ae43 + - d1327bed-7daa-4e1f-8108-b74e4813de9c + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 227.830834ms + duration: 56.686792ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 79 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips method: POST response: proto: HTTP/2.0 @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 288 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.174232Z","custom_routes_propagation_enabled":false,"id":"36b341a9-fb66-44f9-94c4-87db636b667e","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.174232Z"}' + body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "435" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,50 +152,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65974c14-5780-4f0a-bb47-9b89e3db43c6 + - 5c440ca7-961f-470e-8530-e19e0bc6caec status: 200 OK code: 200 - duration: 256.569792ms + duration: 70.844458ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 423 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' headers: Content-Length: - - "19730" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,12 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1c39544-dc8f-4190-a899-ec12c6945002 - X-Total-Count: - - "75" + - 402b26b9-a1f9-4473-8ee2-45f5b4dc02d4 status: 200 OK code: 200 - duration: 50.736375ms + duration: 43.656375ms - id: 4 request: proto: HTTP/1.1 @@ -224,8 +222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/87eaacf8-f2b3-4880-b7e8-4bdde5bf358a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -233,20 +231,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 19730 uncompressed: false - body: '{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "298" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,10 +254,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4138bbb1-77fa-4d88-afc3-34b0dbb0ee20 + - 49fc6347-7b2d-4312-82c2-c082568d8f18 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 47.963875ms + duration: 49.697167ms - id: 5 request: proto: HTTP/1.1 @@ -273,8 +275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/36b341a9-fb66-44f9-94c4-87db636b667e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 method: GET response: proto: HTTP/2.0 @@ -282,20 +284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.174232Z","custom_routes_propagation_enabled":false,"id":"36b341a9-fb66-44f9-94c4-87db636b667e","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.174232Z"}' + body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' headers: Content-Length: - - "435" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e664d146-11fe-496f-957c-d83eac38b8fd + - 856ecc91-c91b-460b-a96e-a24c60300791 status: 200 OK code: 200 - duration: 24.578916ms + duration: 21.405958ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 method: GET response: proto: HTTP/2.0 @@ -331,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 288 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "1352" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,50 +354,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4a2b711-160b-4f01-8d05-4f711a7dc690 + - ec1e05e5-1a99-4b86-bf77-fe09b2aabe19 status: 200 OK code: 200 - duration: 67.196833ms + duration: 53.17975ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 255 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-nostalgic-ramanujan","description":"","ip_id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 1185 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292230Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:12.350292230Z","zone":"fr-par-1"}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "915" + - "1185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,48 +403,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 413fb54b-3d48-486d-80ac-93e5371e9af2 + - e033b9e8-9499-4cbf-88c4-92e5f7493852 status: 200 OK code: 200 - duration: 396.960292ms + duration: 73.042042ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 214 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1116 + content_length: 28 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-10T15:30:12.632973Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-10T15:30:12.642485Z","zone":"fr-par-1"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "1116" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -452,29 +454,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a353bf7a-de14-42e8-b4e2-5d5d3ce84010 - status: 200 OK - code: 200 - duration: 84.889833ms + - 4c265977-25dd-41ab-9cf3-a2e893db82b8 + status: 500 Internal Server Error + code: 500 + duration: 205.870959ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 249 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-brave-gagarin","description":"","ip_id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: proto: HTTP/2.0 @@ -482,20 +484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 880 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.268614Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"661d818c-af5a-480b-8e7f-b8329b2966e2","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.268614Z","id":"24affe2b-838d-43a2-bd8a-445310947afa","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"},{"created_at":"2025-06-10T15:30:12.268614Z","id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4cf0::/64","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}],"tags":[],"updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683177965Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:07.683177965Z","zone":"fr-par-1"}' headers: Content-Length: - - "1106" + - "880" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,10 +505,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fff5b3c9-b6e7-4b0f-9d4d-77019ad8b53f + - b3be5471-4f0a-4216-9cae-cd1ac3e73978 status: 200 OK code: 200 - duration: 718.223917ms + duration: 363.4865ms - id: 10 request: proto: HTTP/1.1 @@ -522,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/661d818c-af5a-480b-8e7f-b8329b2966e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -531,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 874 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.268614Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"661d818c-af5a-480b-8e7f-b8329b2966e2","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.268614Z","id":"24affe2b-838d-43a2-bd8a-445310947afa","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"},{"created_at":"2025-06-10T15:30:12.268614Z","id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4cf0::/64","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}],"tags":[],"updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:07.683178Z","zone":"fr-par-1"}' headers: Content-Length: - - "1106" + - "874" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,10 +554,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be26c15-a95d-485d-a33d-abaac49c17fb + - 9b2f9fdf-9e84-4a39-baef-c7fdebcadaca status: 200 OK code: 200 - duration: 28.882625ms + duration: 93.128167ms - id: 11 request: proto: HTTP/1.1 @@ -567,13 +569,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: @@ -584,7 +586,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:12.438342+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -593,11 +595,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +607,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c50e4ebd-5929-4102-a4fe-9ff5f49faeb5 + - 55203d3b-79b7-45bd-92d5-2de1297db1bb status: 201 Created code: 201 - duration: 729.26175ms + duration: 638.589291ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +626,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -635,7 +637,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:12.438342+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -644,9 +646,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,10 +656,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 358acf95-f102-43c3-b253-32dfca6c4502 + - 370e0484-e08a-47a0-972f-4743429ac634 status: 200 OK code: 200 - duration: 205.375125ms + duration: 133.094792ms - id: 13 request: proto: HTTP/1.1 @@ -673,8 +675,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -684,7 +686,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:12.438342+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -693,9 +695,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cd7b03a-63d0-412e-beca-ff15bfa7a355 + - 2132d7d2-c488-4f13-ad70-a87240b9107a status: 200 OK code: 200 - duration: 180.366667ms + duration: 138.91275ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +724,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -731,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.552741Z","id":"a806e619-2500-4e3c-9f38-7718f1b36d82","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.552741Z","id":"7870eb85-ac74-4d70-b664-2fa797326ba3","product_resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.552741Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +754,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a890ae2-b834-4519-bf4b-2f2e787be201 + - b79db0b3-cb84-4a1e-a97d-f9a124848c37 status: 200 OK code: 200 - duration: 48.925458ms + duration: 44.417333ms - id: 15 request: proto: HTTP/1.1 @@ -773,8 +775,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action method: POST response: proto: HTTP/2.0 @@ -784,7 +786,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/action","href_result":"/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9","id":"8269b928-7dc9-4bb4-aa5d-d68cc3cc385c","progress":0,"started_at":"2025-06-10T15:30:13.854353+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action","href_result":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7","id":"776c1b09-03ce-4cf3-ac0f-0dedbe5ffa2c","progress":0,"started_at":"2025-06-30T15:02:08.778177+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -793,11 +795,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/8269b928-7dc9-4bb4-aa5d-d68cc3cc385c + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/776c1b09-03ce-4cf3-ac0f-0dedbe5ffa2c Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,10 +807,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0ee554c-8253-4095-bd82-01ce4e80e1c6 + - 14048a7d-8abc-466a-b567-750383af2c0d status: 202 Accepted code: 202 - duration: 460.419ms + duration: 230.750625ms - id: 16 request: proto: HTTP/1.1 @@ -824,8 +826,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -835,7 +837,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:13.508833+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:08.605631+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -844,9 +846,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,48 +856,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 701053b7-9718-40b3-9f6a-769485f2f288 + - 28345d4f-f77f-4c47-b9c7-d303896a809c status: 200 OK code: 200 - duration: 178.294291ms + duration: 145.204ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 214 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 1082 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' headers: Content-Length: - - "1969" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,10 +907,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 779bf986-df23-4973-a7e5-fb1c761744e9 + - 561151cb-262b-4f64-b282-278986a4f734 status: 200 OK code: 200 - duration: 164.4165ms + duration: 591.301042ms - id: 18 request: proto: HTTP/1.1 @@ -922,8 +926,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 method: GET response: proto: HTTP/2.0 @@ -931,20 +935,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 1082 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' headers: Content-Length: - - "1969" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,10 +956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16cdfb5f-e27b-4431-a10a-60a56ed771ea + - d1c6f4fb-d24e-4d5f-9614-15b6862f4e1a status: 200 OK code: 200 - duration: 219.244167ms + duration: 29.539125ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +975,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -980,20 +984,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1969 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a806e619-2500-4e3c-9f38-7718f1b36d82","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,10 +1005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7707e13-d4f1-4c3d-865a-5420ce20fb05 - status: 404 Not Found - code: 404 - duration: 31.80775ms + - e2055dc6-57c4-44da-b0ce-40f41deac45d + status: 200 OK + code: 200 + duration: 211.137708ms - id: 20 request: proto: HTTP/1.1 @@ -1020,8 +1024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -1029,20 +1033,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1969 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.552741Z","id":"a806e619-2500-4e3c-9f38-7718f1b36d82","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.552741Z","id":"7870eb85-ac74-4d70-b664-2fa797326ba3","product_resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.552741Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "1969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,10 +1054,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 322ff170-af58-439a-b6ef-e7e09717adba + - ad05e163-08a8-4c61-b931-d2567698a6b7 status: 200 OK code: 200 - duration: 57.015709ms + duration: 183.352625ms - id: 21 request: proto: HTTP/1.1 @@ -1069,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -1078,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1099,10 +1103,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0868e473-d7b5-4674-b111-cdc50f2c7e0a - status: 200 OK - code: 200 - duration: 69.3555ms + - 7348b926-ac5b-4aeb-8c2b-0df11b17bbbe + status: 404 Not Found + code: 404 + duration: 42.830792ms - id: 22 request: proto: HTTP/1.1 @@ -1118,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -1127,22 +1131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 686 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,12 +1152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3177280-8ff2-445c-a4e3-ae5b34d2a919 - X-Total-Count: - - "0" + - 2f689c2a-0584-41c3-9930-ed21f95f7821 status: 200 OK code: 200 - duration: 52.173208ms + duration: 46.496834ms - id: 23 request: proto: HTTP/1.1 @@ -1171,8 +1171,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/user_data method: GET response: proto: HTTP/2.0 @@ -1180,20 +1180,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1969" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,50 +1201,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d95d24e8-cee1-424c-a7bd-418531de5336 + - bf7faa96-13fe-4ffe-8337-7f2ca9b0ed64 status: 200 OK code: 200 - duration: 218.53025ms + duration: 90.671083ms - id: 24 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 20 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "473" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:14 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,10 +1252,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d703306-53ae-4d18-8a80-7b7e8ec0dd5e - status: 201 Created - code: 201 - duration: 995.512916ms + - 48013c05-3d50-4923-8261-afe24587d2d2 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 62.3005ms - id: 25 request: proto: HTTP/1.1 @@ -1271,8 +1273,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -1280,20 +1282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1969 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,28 +1303,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36124e7f-938b-4844-81c4-18d352086c07 + - 71aa3917-ebfe-4a1b-b445-a3de3413dbbe status: 200 OK code: 200 - duration: 75.3945ms + duration: 174.606542ms - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1331,7 +1335,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1340,9 +1344,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Mon, 30 Jun 2025 15:02:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,10 +1354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6708760-080d-4ed5-b967-40760575db2d - status: 200 OK - code: 200 - duration: 83.271833ms + - 1ea27809-69e3-4041-b7a1-77a96d027574 + status: 201 Created + code: 201 + duration: 5.840893666s - id: 27 request: proto: HTTP/1.1 @@ -1369,8 +1373,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1380,7 +1384,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1389,9 +1393,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Mon, 30 Jun 2025 15:02:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,10 +1403,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25e7a10a-789b-48cd-8d46-afaf1dee1b17 + - f05fea80-e120-41f0-aae6-a57fffa28ef8 status: 200 OK code: 200 - duration: 64.986542ms + duration: 75.850292ms - id: 28 request: proto: HTTP/1.1 @@ -1418,8 +1422,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1429,7 +1433,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1438,9 +1442,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Mon, 30 Jun 2025 15:02:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,10 +1452,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a55125dd-4129-4725-9191-730927d7e27d + - 5ba89797-3805-4c78-8c97-d7e76aba9e67 status: 200 OK code: 200 - duration: 58.944709ms + duration: 121.718875ms - id: 29 request: proto: HTTP/1.1 @@ -1467,8 +1471,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1478,7 +1482,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1487,9 +1491,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Mon, 30 Jun 2025 15:02:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,10 +1501,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7d88319-18cf-4b3f-8c6e-7bdef877fc25 + - 3786ca21-68dc-47ad-8a74-63ddc0baae8a status: 200 OK code: 200 - duration: 94.750916ms + duration: 85.502417ms - id: 30 request: proto: HTTP/1.1 @@ -1516,8 +1520,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1525,20 +1529,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 473 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:30:15.090641Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1111" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Mon, 30 Jun 2025 15:02:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,10 +1550,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce87fd8e-0eea-4ea2-9fbd-1676bc40d2c4 + - 454ba141-c0a3-4e17-8ac5-0cc8d58a1f98 status: 200 OK code: 200 - duration: 72.651459ms + duration: 91.383542ms - id: 31 request: proto: HTTP/1.1 @@ -1565,8 +1569,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -1574,20 +1578,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1070 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:30:15.090641Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Mon, 30 Jun 2025 15:02:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,10 +1599,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b619fe0b-9520-4928-a765-da9549ca38d8 + - 55fa0d5a-016b-4939-bfb7-bec58c89ce44 status: 200 OK code: 200 - duration: 74.953208ms + duration: 81.779375ms - id: 32 request: proto: HTTP/1.1 @@ -1614,8 +1618,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -1623,20 +1627,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39 + content_length: 1070 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "39" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:42 GMT + - Mon, 30 Jun 2025 15:02:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,10 +1648,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ebdccc9-abaa-43df-b112-d54f1851cb53 + - 97013619-8fbf-4e11-ac28-b184b9c60180 status: 200 OK code: 200 - duration: 56.114625ms + duration: 87.582042ms - id: 33 request: proto: HTTP/1.1 @@ -1663,8 +1667,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1672,20 +1676,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 38 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "473" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Mon, 30 Jun 2025 15:02:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,10 +1697,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22843630-9184-4680-9046-5c476584cd52 + - b7eaf853-a460-4822-84a7-8ac07e39574b status: 200 OK code: 200 - duration: 55.734834ms + duration: 114.374458ms - id: 34 request: proto: HTTP/1.1 @@ -1712,8 +1716,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1723,7 +1727,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1732,9 +1736,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:51 GMT + - Mon, 30 Jun 2025 15:02:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,10 +1746,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f21f46f4-5692-4b39-87da-372e98372ab2 + - aaa03136-f5a5-4a19-83c0-4b3533f7d283 status: 200 OK code: 200 - duration: 68.577917ms + duration: 82.07925ms - id: 35 request: proto: HTTP/1.1 @@ -1761,8 +1765,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1770,20 +1774,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:56 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,10 +1795,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfb52ca3-ace0-4aad-b81a-ab29bf3518d2 + - 5090f84c-3a9d-4c51-9cf7-0b6e86920c6b status: 200 OK code: 200 - duration: 64.821958ms + duration: 59.1735ms - id: 36 request: proto: HTTP/1.1 @@ -1810,8 +1814,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -1819,20 +1823,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:30:20.093846+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:01 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,10 +1844,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26dec376-6aa3-437f-a526-37b2e3d1f001 + - a383a520-5eba-420c-86ad-f18422c2d62c status: 200 OK code: 200 - duration: 68.545667ms + duration: 82.506292ms - id: 37 request: proto: HTTP/1.1 @@ -1859,8 +1863,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -1868,20 +1872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2427 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,10 +1893,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2000423-4f21-40d2-927c-6245bec5a4ed + - 338719c3-7aa2-4068-860e-7c9b89ebf26b status: 200 OK code: 200 - duration: 60.269ms + duration: 151.806209ms - id: 38 request: proto: HTTP/1.1 @@ -1908,8 +1912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d0d80aa4-05a5-4fad-882c-c4bca8bab785&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1917,20 +1921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1072 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,10 +1942,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 400e2fdb-b9ce-4b54-9dc1-47bb298ceea0 + - 2fb60203-9300-438a-834a-0eae85845845 status: 200 OK code: 200 - duration: 58.553125ms + duration: 44.444292ms - id: 39 request: proto: HTTP/1.1 @@ -1957,8 +1961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1966,20 +1970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 535 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' headers: Content-Length: - - "2427" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,10 +1991,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c24f84b-f8d5-4be5-a055-d9367f086bcb + - 1c28c9e8-033b-474b-b35f-7c8bb55125c9 status: 200 OK code: 200 - duration: 138.611167ms + duration: 50.060584ms - id: 40 request: proto: HTTP/1.1 @@ -2006,8 +2010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=661d818c-af5a-480b-8e7f-b8329b2966e2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=a74b149c-021c-47e4-a028-a945192c25c0&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -2015,20 +2019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1070 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:4cf0:d8b0:86b4:c352:9ddc/64","created_at":"2025-06-10T15:30:20.636822Z","id":"ecb29bb0-ffb2-4295-859c-beb8ec2dd330","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895"},"tags":[],"updated_at":"2025-06-10T15:30:20.636822Z","zone":null},{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":2}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1102" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,48 +2040,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e39acb12-85a1-489b-81db-aaf1f664047a + - 4736553e-c63c-4cdf-97bf-1390dc039965 status: 200 OK code: 200 - duration: 49.735375ms + duration: 67.66475ms - id: 41 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 624 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-lb-bkd-zealous-dubinsky","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.52.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ab8%3A75&order_by=created_at_desc&page=1&resource_type=unknown_type - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/backends + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 1934 uncompressed: false - body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:02:46.682729643Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729391973Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682729643Z"}' headers: Content-Length: - - "550" + - "1934" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:06 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,10 +2091,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 714aad2f-b5c1-4ee5-aced-2b1501b4b906 + - 76d7b103-ecec-48ca-acd0-29e98a096125 status: 200 OK code: 200 - duration: 174.56825ms + duration: 314.018542ms - id: 42 request: proto: HTTP/1.1 @@ -2104,8 +2110,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -2113,20 +2119,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1072 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:30:15.090641Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729392Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,50 +2140,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cf4f891-adb6-48fe-b4fd-0cc1ab2003ff + - 8d9d932c-f2bb-4acd-a499-71ce9c996e84 status: 200 OK code: 200 - duration: 69.644333ms + duration: 87.041833ms - id: 43 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 625 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-nostalgic-hypatia","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.60.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a/backends - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2006 + content_length: 1925 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:07.259956540Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-10T15:31:07.294300914Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nostalgic-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.60.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-10T15:31:07.259956540Z"}' + body: '{"created_at":"2025-06-30T15:02:46.682730Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729392Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682730Z"}' headers: Content-Length: - - "2006" + - "1925" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2189,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 832a2885-7e68-41c7-89b1-f8d988011adc + - cec00afc-dd5d-4d52-b33c-4c3752cfce77 status: 200 OK code: 200 - duration: 317.938209ms + duration: 76.940458ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2208,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -2213,20 +2217,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1113 + content_length: 1070 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-10T15:31:07.294301Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1113" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b882785-d1db-4ea3-a149-1f09546c0e8b + - a436fdd3-48bf-4aa6-86f0-a273a9bac0af status: 200 OK code: 200 - duration: 70.509917ms + duration: 71.327708ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2262,20 +2266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1997 + content_length: 535 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:07.259957Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-10T15:31:07.294301Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nostalgic-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.60.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-10T15:31:07.259957Z"}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1997" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72d24a0a-b395-408c-a073-d84c4ad4fa6a + - a3ad08ea-45b6-4d05-a581-8b87c8b819a0 status: 200 OK code: 200 - duration: 128.881833ms + duration: 54.706833ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 method: GET response: proto: HTTP/2.0 @@ -2311,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 423 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' headers: Content-Length: - - "1111" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5d2431b-a3d4-42b5-b300-cfb48e306776 + - efe3102b-e278-4b8e-b897-b674293ade02 status: 200 OK code: 200 - duration: 69.719291ms + duration: 25.90975ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ab8%3A75&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 method: GET response: proto: HTTP/2.0 @@ -2360,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 322 uncompressed: false - body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":1}' + body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "550" + - "322" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f01c75-fed0-473d-9c7a-370d4b3b073c + - 4bb8688a-bc65-4973-906a-52632768feb8 status: 200 OK code: 200 - duration: 49.909ms + duration: 46.966208ms - id: 48 request: proto: HTTP/1.1 @@ -2400,8 +2404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/36b341a9-fb66-44f9-94c4-87db636b667e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 method: GET response: proto: HTTP/2.0 @@ -2409,20 +2413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.174232Z","custom_routes_propagation_enabled":false,"id":"36b341a9-fb66-44f9-94c4-87db636b667e","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.174232Z"}' + body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' headers: Content-Length: - - "435" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4e1b2f6-26b6-4db7-ab89-7bcbba6aae7e + - 0b12a9d0-d417-48d9-9735-c8b0f7e1b6a1 status: 200 OK code: 200 - duration: 31.454875ms + duration: 29.098417ms - id: 49 request: proto: HTTP/1.1 @@ -2449,8 +2453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/87eaacf8-f2b3-4880-b7e8-4bdde5bf358a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -2458,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 332 + content_length: 1070 uncompressed: false - body: '{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "332" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e28c45a0-1873-4f60-aa37-0d5937be9b31 + - 152000d9-483d-4033-8681-97a107679339 status: 200 OK code: 200 - duration: 42.231458ms + duration: 70.249875ms - id: 50 request: proto: HTTP/1.1 @@ -2498,8 +2502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/661d818c-af5a-480b-8e7f-b8329b2966e2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -2507,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 2427 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.268614Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"661d818c-af5a-480b-8e7f-b8329b2966e2","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.268614Z","id":"24affe2b-838d-43a2-bd8a-445310947afa","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.60.0/22","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"},{"created_at":"2025-06-10T15:30:12.268614Z","id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4cf0::/64","updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}],"tags":[],"updated_at":"2025-06-10T15:30:12.268614Z","vpc_id":"36b341a9-fb66-44f9-94c4-87db636b667e"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1106" + - "2427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3047bf21-387e-44d4-b56e-2e680d6f6100 + - 89e35f8a-ffce-484a-bb81-a78710af7566 status: 200 OK code: 200 - duration: 25.211833ms + duration: 133.301916ms - id: 51 request: proto: HTTP/1.1 @@ -2547,8 +2551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -2556,20 +2560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 143 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' headers: Content-Length: - - "1111" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abc560e8-0525-42fb-b7a3-ecc9b09fee37 - status: 200 OK - code: 200 - duration: 62.697584ms + - dfd1f613-f704-498a-be94-af5e076fcc25 + status: 404 Not Found + code: 404 + duration: 40.099625ms - id: 52 request: proto: HTTP/1.1 @@ -2596,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1070 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 416b96b8-c5a4-48e4-bfee-b6d2f18b4806 + - 36f6fe36-d97b-4dc1-9cc0-82867453eb42 status: 200 OK code: 200 - duration: 61.279333ms + duration: 60.478875ms - id: 53 request: proto: HTTP/1.1 @@ -2645,8 +2649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -2654,20 +2658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 686 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' headers: Content-Length: - - "2427" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2675,10 +2679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1e32730-c9a5-4ac2-9e1b-c6ba80d2e494 + - 2d8c585b-4f7c-48a5-b71f-1d8e95b76873 status: 200 OK code: 200 - duration: 171.099542ms + duration: 52.76075ms - id: 54 request: proto: HTTP/1.1 @@ -2694,8 +2698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2703,20 +2707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 38 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a806e619-2500-4e3c-9f38-7718f1b36d82","type":"not_found"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "143" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2724,10 +2728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9727263-da21-479b-8cae-7e2172877dce - status: 404 Not Found - code: 404 - duration: 28.71825ms + - dd2ca9cd-ea47-4184-b391-619839e6d049 + status: 200 OK + code: 200 + duration: 56.824ms - id: 55 request: proto: HTTP/1.1 @@ -2743,8 +2747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/user_data method: GET response: proto: HTTP/2.0 @@ -2752,20 +2756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39 + content_length: 17 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"user_data":[]}' headers: Content-Length: - - "39" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2773,10 +2777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 267c2ab4-cd65-48c3-b041-427e02e0f276 + - e928f310-cab9-4af0-bf75-d98608af04fd status: 200 OK code: 200 - duration: 62.946584ms + duration: 57.383292ms - id: 56 request: proto: HTTP/1.1 @@ -2792,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics method: GET response: proto: HTTP/2.0 @@ -2801,20 +2805,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 478 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.552741Z","id":"a806e619-2500-4e3c-9f38-7718f1b36d82","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.552741Z","id":"7870eb85-ac74-4d70-b664-2fa797326ba3","product_resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.552741Z","zone":"fr-par-1"}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "705" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2822,10 +2828,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8060cad-bdb4-4ee3-8a0c-9ef867f2b4ce + - a3703f50-0772-4763-8415-b627c102b522 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 55.555042ms + duration: 72.613333ms - id: 57 request: proto: HTTP/1.1 @@ -2841,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2850,20 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1072 uncompressed: false - body: '{"user_data":[]}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' headers: Content-Length: - - "17" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2871,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 602ece7b-9ca3-4973-9a88-1d4cb6638f01 + - fbd9a8a3-3600-481a-9614-11328316db92 status: 200 OK code: 200 - duration: 57.753417ms + duration: 37.507833ms - id: 58 request: proto: HTTP/1.1 @@ -2890,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -2899,22 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 475 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "478" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:02:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2922,12 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 145b4fec-f3f0-4fa3-88ea-f1603e5a1c0b - X-Total-Count: - - "1" + - 13348184-199b-4729-9a66-89c618e7ecb5 status: 200 OK code: 200 - duration: 64.422958ms + duration: 74.956667ms - id: 59 request: proto: HTTP/1.1 @@ -2943,8 +2947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=a74b149c-021c-47e4-a028-a945192c25c0&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -2952,20 +2956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 2427 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:4cf0:d8b0:86b4:c352:9ddc/64","created_at":"2025-06-10T15:30:20.636822Z","id":"ecb29bb0-ffb2-4295-859c-beb8ec2dd330","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895"},"tags":[],"updated_at":"2025-06-10T15:30:20.636822Z","zone":null},{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1102" + - "2427" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2973,10 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2f51ee4-52d0-4274-9c7c-8b54a6105a86 + - 6808d296-dcba-4f72-aaea-a26943e1081a status: 200 OK code: 200 - duration: 32.503292ms + duration: 180.522791ms - id: 60 request: proto: HTTP/1.1 @@ -2992,8 +2996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d0d80aa4-05a5-4fad-882c-c4bca8bab785&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3001,20 +3005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1072 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3022,10 +3026,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10c46fee-f470-4ea3-9c93-0bcf6d525231 + - 31d96914-02f5-48bc-93ab-dea592b0297e status: 200 OK code: 200 - duration: 66.094958ms + duration: 65.126167ms - id: 61 request: proto: HTTP/1.1 @@ -3041,8 +3045,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3050,20 +3054,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 535 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' headers: Content-Length: - - "2427" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3071,10 +3075,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d03a74d-5444-41bb-a904-11b71a833846 + - a01be2be-7f4f-4cf3-a2e3-7008005baa98 status: 200 OK code: 200 - duration: 258.104375ms + duration: 64.390708ms - id: 62 request: proto: HTTP/1.1 @@ -3090,8 +3094,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=661d818c-af5a-480b-8e7f-b8329b2966e2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=a74b149c-021c-47e4-a028-a945192c25c0&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 method: GET response: proto: HTTP/2.0 @@ -3099,20 +3103,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1923 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:4cf0:d8b0:86b4:c352:9ddc/64","created_at":"2025-06-10T15:30:20.636822Z","id":"ecb29bb0-ffb2-4295-859c-beb8ec2dd330","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"fc581e46-392e-4b8b-9114-1fc8fd2c1895"},"tags":[],"updated_at":"2025-06-10T15:30:20.636822Z","zone":null},{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:02:46.682730Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682730Z"}' headers: Content-Length: - - "1102" + - "1923" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3120,10 +3124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 514a7b9f-b14b-4e94-9782-1d304417943d + - f564152c-b87a-4a58-a6df-2537628a1d9a status: 200 OK code: 200 - duration: 103.192875ms + duration: 76.860459ms - id: 63 request: proto: HTTP/1.1 @@ -3139,8 +3143,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ab8%3A75&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -3148,20 +3152,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 1070 uncompressed: false - body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":1}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "550" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:08 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,10 +3173,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c61e99f-118b-4861-8995-3c1b829eaad4 + - 91c2f2f6-f642-4358-b7cc-3f1d1d402530 status: 200 OK code: 200 - duration: 46.507792ms + duration: 79.041292ms - id: 64 request: proto: HTTP/1.1 @@ -3188,8 +3192,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3197,20 +3201,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1995 + content_length: 535 uncompressed: false - body: '{"created_at":"2025-06-10T15:31:07.259957Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-nostalgic-hypatia","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.60.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-10T15:31:07.259957Z"}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1995" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,10 +3222,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1da5867e-d47b-48eb-bd06-8a39e1e2c823 + - 8cfad2f5-640a-4e93-9075-6e610e7b2ab1 status: 200 OK code: 200 - duration: 104.493542ms + duration: 51.578667ms - id: 65 request: proto: HTTP/1.1 @@ -3237,8 +3241,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -3246,20 +3250,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1070 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3267,10 +3271,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 969ee573-1873-4d73-b945-e9b0d442fa54 + - ac7068bd-5c22-4b9a-bcbf-f01e5b55db09 status: 200 OK code: 200 - duration: 88.175ms + duration: 69.8275ms - id: 66 request: proto: HTTP/1.1 @@ -3286,29 +3290,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1e%3Ab8%3A75&order_by=created_at_desc&page=1&resource_type=unknown_type - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 0 uncompressed: false - body: '{"ips":[{"address":"172.16.60.2/22","created_at":"2025-06-10T15:30:20.334398Z","id":"33784e0e-42b5-44e1-a725-7fa85d7357c3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"a74b149c-021c-47e4-a028-a945192c25c0","mac_address":"02:00:00:1E:B8:75","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"24affe2b-838d-43a2-bd8a-445310947afa"},"tags":[],"updated_at":"2025-06-10T15:30:20.334398Z","zone":null}],"total_count":1}' + body: "" headers: - Content-Length: - - "550" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3316,10 +3318,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac9780fa-b5aa-4228-bf8d-58817dc9d82c - status: 200 OK - code: 200 - duration: 50.438458ms + - ea4defd8-c71b-4184-95dd-feed5d6e4f04 + status: 204 No Content + code: 204 + duration: 403.270916ms - id: 67 request: proto: HTTP/1.1 @@ -3335,8 +3337,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -3344,20 +3346,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1070 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:07.639597Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3365,10 +3367,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c913829-e419-4965-80f3-c24a977a9c26 + - 1a2599e9-4bae-4209-8322-4e30cb2a41dd status: 200 OK code: 200 - duration: 67.643166ms + duration: 86.848583ms - id: 68 request: proto: HTTP/1.1 @@ -3384,27 +3386,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/4d756cbf-63d7-49e1-9e15-f0ada0eb9c9a - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1070 uncompressed: false - body: "" + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' headers: + Content-Length: + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3412,10 +3416,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74405a9c-fea8-4144-89bd-9d9c96020eba - status: 204 No Content - code: 204 - duration: 367.685375ms + - cd15d340-cd9c-417d-a423-aedc21c927f0 + status: 200 OK + code: 200 + duration: 60.541542ms - id: 69 request: proto: HTTP/1.1 @@ -3431,8 +3435,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: GET response: proto: HTTP/2.0 @@ -3440,20 +3444,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1113 + content_length: 475 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-10T15:31:09.665434Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1113" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:09 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3461,10 +3465,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45cccd20-cce5-4b02-9678-4c8613737b89 + - 45a58171-6410-40dc-9847-ae543365d5b7 status: 200 OK code: 200 - duration: 71.528625ms + duration: 65.050458ms - id: 70 request: proto: HTTP/1.1 @@ -3480,29 +3484,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505?release_ip=false + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 0 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:19.931245+00:00","id":"a74b149c-021c-47e4-a028-a945192c25c0","ipam_ip_ids":["33784e0e-42b5-44e1-a725-7fa85d7357c3","ecb29bb0-ffb2-4295-859c-beb8ec2dd330"],"mac_address":"02:00:00:1e:b8:75","modification_date":"2025-06-10T15:31:03.492185+00:00","private_network_id":"661d818c-af5a-480b-8e7f-b8329b2966e2","server_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3510,10 +3512,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f076ddc1-d690-4697-8df1-edaa766371a0 - status: 200 OK - code: 200 - duration: 61.775709ms + - e7e7a415-fc66-40fe-83b1-fad96f8607ec + status: 204 No Content + code: 204 + duration: 332.196166ms - id: 71 request: proto: HTTP/1.1 @@ -3529,8 +3531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -3538,20 +3540,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1074 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:09.983017Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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-06-10T15:30:16.539176Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:02:49.389171Z","zone":"fr-par-1"}' headers: Content-Length: - - "1111" + - "1074" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3559,10 +3561,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 636482a5-d198-4692-8f3a-5df5cfc5d349 + - cfa76435-c233-405e-bd34-1f95339acb5c status: 200 OK code: 200 - duration: 148.610375ms + duration: 68.839ms - id: 72 request: proto: HTTP/1.1 @@ -3578,8 +3580,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 method: DELETE response: proto: HTTP/2.0 @@ -3596,9 +3598,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3606,10 +3608,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c24d36e3-3010-4f56-8ff4-24d776dfa277 + - 3d26ae09-7928-442f-a5a0-1b305dbe599e status: 204 No Content code: 204 - duration: 375.348916ms + duration: 596.512667ms - id: 73 request: proto: HTTP/1.1 @@ -3625,27 +3627,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 148 uncompressed: false - body: "" + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","type":"not_found"}' headers: + Content-Length: + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3653,10 +3657,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6577a173-a988-4f73-a173-1c20b05552cd - status: 204 No Content - code: 204 - duration: 464.016584ms + - 56726e35-d6dc-466b-be32-89bbfb4359ba + status: 404 Not Found + code: 404 + duration: 60.911958ms - id: 74 request: proto: HTTP/1.1 @@ -3672,8 +3676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/private_nics/a74b149c-021c-47e4-a028-a945192c25c0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -3681,20 +3685,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 1969 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"a74b149c-021c-47e4-a028-a945192c25c0","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "1969" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3702,10 +3706,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 487939ff-e3e6-4812-a574-b4235c41b8d8 - status: 404 Not Found - code: 404 - duration: 64.749ms + - b0d6625f-21d7-4d5c-acfc-4be5bf9bf026 + status: 200 OK + code: 200 + duration: 199.687667ms - id: 75 request: proto: HTTP/1.1 @@ -3721,8 +3725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -3730,20 +3734,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1115 + content_length: 686 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-10T15:30:12.350292Z","description":"","frontend_count":0,"id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","instances":[{"created_at":"2025-06-10T15:12:46.463871Z","id":"9ef6e7d9-4370-48df-a722-91da481630e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-10T15:31:09.983017Z","zone":"fr-par-1"}],"ip":[{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":"f7ad7cf4-1733-469b-bc02-d8a43e634e6a","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-nostalgic-ramanujan","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_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-10T15:31:10.253869Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' headers: Content-Length: - - "1115" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3751,48 +3755,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b3c3dd1-0ec2-495e-85e7-865551d55b76 + - 4e9f9da0-4321-4b9f-b53a-68ac989f046b status: 200 OK code: 200 - duration: 91.01ms + duration: 42.642875ms - id: 76 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 352 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:30:17.491049+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action","href_result":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7","id":"657526a0-f7ec-4007-82a2-ec0a9473f546","progress":0,"started_at":"2025-06-30T15:02:50.485768+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1969" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:50 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/657526a0-f7ec-4007-82a2-ec0a9473f546 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3800,10 +3808,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da706dd0-6fd6-4164-873e-39492881336a - status: 200 OK - code: 200 - duration: 170.924625ms + - c17301c3-4cb3-4f43-ac38-bb00992c532d + status: 202 Accepted + code: 202 + duration: 394.035834ms - id: 77 request: proto: HTTP/1.1 @@ -3819,8 +3827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -3828,20 +3836,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 1929 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.552741Z","id":"a806e619-2500-4e3c-9f38-7718f1b36d82","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.552741Z","id":"7870eb85-ac74-4d70-b664-2fa797326ba3","product_resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.552741Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "705" + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:10 GMT + - Mon, 30 Jun 2025 15:02:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3849,52 +3857,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2b1a645-a3e5-4db1-b9df-cdec556989bb + - 95eae103-ca67-4239-b5fe-85573e68bbab status: 200 OK code: 200 - duration: 60.341ms + duration: 364.602458ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 0 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9/action","href_result":"/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9","id":"d55d1e24-3447-424d-bb9e-446fb1fb0916","progress":0,"started_at":"2025-06-10T15:31:11.012721+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d55d1e24-3447-424d-bb9e-446fb1fb0916 + - Mon, 30 Jun 2025 15:02:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3902,10 +3904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a943dd6-4dd8-43e4-9a60-1a3292998946 - status: 202 Accepted - code: 202 - duration: 301.592208ms + - 19ed661e-6544-44c8-b520-fcf8af288c83 + status: 204 No Content + code: 204 + duration: 4.200175959s - id: 79 request: proto: HTTP/1.1 @@ -3921,29 +3923,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:10.839308+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Mon, 30 Jun 2025 15:02:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3951,10 +3951,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 733ebe22-9f39-4005-92d9-6e97ba23097d - status: 200 OK - code: 200 - duration: 170.799166ms + - c70090e5-b389-4157-8b09-e6e0c0f91189 + status: 204 No Content + code: 204 + duration: 107.8355ms - id: 80 request: proto: HTTP/1.1 @@ -3970,27 +3970,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/661d818c-af5a-480b-8e7f-b8329b2966e2 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1929 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:11 GMT + - Mon, 30 Jun 2025 15:02:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3998,10 +4000,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0665744-0cab-42cb-9bf6-1d26288ab619 - status: 204 No Content - code: 204 - duration: 1.394110833s + - c10b69e3-c4b7-40de-95b6-9e5d32125150 + status: 200 OK + code: 200 + duration: 161.163583ms - id: 81 request: proto: HTTP/1.1 @@ -4017,27 +4019,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/36b341a9-fb66-44f9-94c4-87db636b667e - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1929 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1929" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Mon, 30 Jun 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4045,10 +4049,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 594a610d-87ab-47b1-830e-4b6279567a79 - status: 204 No Content - code: 204 - duration: 111.665875ms + - 111ffc2b-95ed-47a6-aa6c-3fb59618f42a + status: 200 OK + code: 200 + duration: 180.559334ms - id: 82 request: proto: HTTP/1.1 @@ -4064,8 +4068,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4075,7 +4079,7 @@ interactions: trailer: {} content_length: 1929 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:10.839308+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1929" @@ -4084,9 +4088,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:16 GMT + - Mon, 30 Jun 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4094,10 +4098,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a254eba-5efc-4e42-9b72-868d7630a47c + - 16a065fc-e9cf-4a21-bb7d-71546c31a704 status: 200 OK code: 200 - duration: 236.057875ms + duration: 196.111125ms - id: 83 request: proto: HTTP/1.1 @@ -4113,8 +4117,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4124,7 +4128,7 @@ interactions: trailer: {} content_length: 1929 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:10.839308+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1929" @@ -4133,9 +4137,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Mon, 30 Jun 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4143,10 +4147,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27c3be8d-5da0-48c7-b8ea-4e2303dbd5c2 + - 19c2be3a-1340-4a4c-8352-11d586c62f7d status: 200 OK code: 200 - duration: 178.92825ms + duration: 145.962833ms - id: 84 request: proto: HTTP/1.1 @@ -4162,8 +4166,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4173,7 +4177,7 @@ interactions: trailer: {} content_length: 1929 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"901","node_id":"49","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:10.839308+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1929" @@ -4182,9 +4186,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:26 GMT + - Mon, 30 Jun 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4192,10 +4196,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b4c8550-378b-4009-b5a5-3159debe775c + - 3d7a8397-0bfa-47f4-9531-f1318e8fc427 status: 200 OK code: 200 - duration: 174.178292ms + duration: 150.409375ms - id: 85 request: proto: HTTP/1.1 @@ -4211,8 +4215,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -4220,20 +4224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 27 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:29.219169+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"lbs not Found"}' headers: Content-Length: - - "1814" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4241,10 +4245,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0249364-f2fe-4b05-9c18-536f39761450 - status: 200 OK - code: 200 - duration: 161.494792ms + - 5ccbc376-7263-4950-8031-4419c674bbea + status: 404 Not Found + code: 404 + duration: 24.616583ms - id: 86 request: proto: HTTP/1.1 @@ -4260,8 +4264,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 method: GET response: proto: HTTP/2.0 @@ -4269,20 +4273,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 27 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.438342+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:45","maintenances":[],"modification_date":"2025-06-10T15:31:29.219169+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"a806e619-2500-4e3c-9f38-7718f1b36d82","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"lbs not Found"}' headers: Content-Length: - - "1814" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4290,10 +4294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5b06831-c5bc-4126-9af8-51f3850216e4 - status: 200 OK - code: 200 - duration: 150.292667ms + - c484ce13-d223-49e4-a832-9604a92c5b4f + status: 404 Not Found + code: 404 + duration: 498.640916ms - id: 87 request: proto: HTTP/1.1 @@ -4309,27 +4313,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 288 uncompressed: false - body: "" + body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: + Content-Length: + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4337,10 +4343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a67d0a9-b91b-430b-a36b-1b067cbb8419 - status: 204 No Content - code: 204 - duration: 241.724667ms + - 853bf8d0-8ecf-44e8-8716-2539a42a1268 + status: 200 OK + code: 200 + duration: 46.163709ms - id: 88 request: proto: HTTP/1.1 @@ -4356,29 +4362,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4386,10 +4390,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9921ec3c-9898-4031-afc4-ec8324fb232f - status: 404 Not Found - code: 404 - duration: 109.166625ms + - 899e07b6-e004-4d64-918a-091191c1f686 + status: 204 No Content + code: 204 + duration: 394.766708ms - id: 89 request: proto: HTTP/1.1 @@ -4405,8 +4409,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4414,20 +4418,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1814 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"a806e619-2500-4e3c-9f38-7718f1b36d82","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:03:20.212639+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4435,10 +4439,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a829b631-916c-40fb-b82f-86d8934df0f0 - status: 404 Not Found - code: 404 - duration: 48.348542ms + - 3d40be56-e785-459a-981f-ab0f7e4f3b8b + status: 200 OK + code: 200 + duration: 165.3825ms - id: 90 request: proto: HTTP/1.1 @@ -4454,8 +4458,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4463,20 +4467,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 1814 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.552741Z","id":"a806e619-2500-4e3c-9f38-7718f1b36d82","last_detached_at":"2025-06-10T15:31:32.507108Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:32.507108Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:03:20.212639+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "498" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4484,10 +4488,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa8b77c8-5536-4e96-ab40-7e79d12c46ac + - abf57fe7-1d48-46e0-bc3f-253e6cd89ceb status: 200 OK code: 200 - duration: 57.912416ms + duration: 152.444875ms - id: 91 request: proto: HTTP/1.1 @@ -4503,8 +4507,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/a806e619-2500-4e3c-9f38-7718f1b36d82 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: DELETE response: proto: HTTP/2.0 @@ -4521,9 +4525,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4531,10 +4535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da018e9f-7232-4634-b08d-40f2007eaceb + - 0c610138-29bd-4bee-9fa3-8031f9464191 status: 204 No Content code: 204 - duration: 73.969667ms + duration: 257.222875ms - id: 92 request: proto: HTTP/1.1 @@ -4550,8 +4554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4559,20 +4563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 143 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","type":"not_found"}' headers: Content-Length: - - "27" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4580,10 +4584,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 530ef8a6-362f-4fd6-b950-fa4cc90121d8 + - 4a43d4d6-85c3-40ea-90b2-fca059c2024a status: 404 Not Found code: 404 - duration: 24.853167ms + duration: 79.708542ms - id: 93 request: proto: HTTP/1.1 @@ -4599,8 +4603,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/f7ad7cf4-1733-469b-bc02-d8a43e634e6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -4608,20 +4612,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 143 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' headers: Content-Length: - - "27" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4629,10 +4633,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 258beaa7-11bc-468e-adeb-cbbe2ca55801 + - 936bb199-55a7-4648-bc99-93f747087ffd status: 404 Not Found code: 404 - duration: 21.056958ms + duration: 35.874916ms - id: 94 request: proto: HTTP/1.1 @@ -4648,8 +4652,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/87eaacf8-f2b3-4880-b7e8-4bdde5bf358a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: GET response: proto: HTTP/2.0 @@ -4657,20 +4661,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 298 + content_length: 484 uncompressed: false - body: '{"id":"87eaacf8-f2b3-4880-b7e8-4bdde5bf358a","ip_address":"62.210.111.174","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-111-174.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":"2025-06-30T15:03:22.415670Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:03:22.415670Z","zone":"fr-par-1"}' headers: Content-Length: - - "298" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:40 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4678,10 +4682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0131b339-148c-43b4-8162-9684d04c6825 + - 23b636df-4a3c-4594-9776-905583238390 status: 200 OK code: 200 - duration: 54.902042ms + duration: 52.416709ms - id: 95 request: proto: HTTP/1.1 @@ -4697,8 +4701,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/87eaacf8-f2b3-4880-b7e8-4bdde5bf358a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 method: DELETE response: proto: HTTP/2.0 @@ -4715,9 +4719,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4725,10 +4729,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53422109-6a0b-4374-af12-5b0556a3be8f + - 22e29a1b-41a4-4308-a8d0-63f1f386e5d4 status: 204 No Content code: 204 - duration: 386.909541ms + duration: 121.8405ms - id: 96 request: proto: HTTP/1.1 @@ -4744,8 +4748,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/4c0f8718-09d3-408c-9be2-e3c1203fcda9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 method: GET response: proto: HTTP/2.0 @@ -4755,7 +4759,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"4c0f8718-09d3-408c-9be2-e3c1203fcda9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","type":"not_found"}' headers: Content-Length: - "143" @@ -4764,9 +4768,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4774,7 +4778,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a694e607-629f-4474-95ec-3a764d406c27 + - 431bac28-2667-48c4-a9b7-d28a80720649 status: 404 Not Found code: 404 - duration: 92.2435ms + duration: 120.330041ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml index 6620b32002..9584e7b556 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,13 +48,66 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf6a2cee-a5e4-4810-8ab0-4207412a51a9 + - 38184132-487d-4a12-96aa-5ab00266bd2b X-Total-Count: - "75" status: 200 OK code: 200 - duration: 212.898375ms + duration: 54.77825ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 19730 + uncompressed: false + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + headers: + Content-Length: + - "19730" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:07 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 65bebdab-b551-4f8a-9478-1e44318cc751 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 68.5975ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -71,7 +124,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -80,20 +133,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.157188Z","custom_routes_propagation_enabled":false,"id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.157188Z"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "435" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,11 +154,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d8de11a-ee47-4b35-8e7f-4e50b1f68d69 - status: 200 OK - code: 200 - duration: 244.661542ms - - id: 2 + - 42532334-3d3b-4f47-af89-027538695e59 + status: 500 Internal Server Error + code: 500 + duration: 152.122292ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -120,8 +173,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/320cfd30-7ab1-4dc9-b8eb-bad2fa329bde + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -129,20 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 1185 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.157188Z","custom_routes_propagation_enabled":false,"id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.157188Z"}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "435" + - "1185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,11 +203,64 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b265aa76-9414-4003-be1b-a9e8d51903fd + - 12b0e5b6-b2b7-441d-8a9d-9430bc616a92 status: 200 OK code: 200 - duration: 31.409208ms - - id: 3 + duration: 77.394417ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 321 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1814 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1814" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:08 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b66d751a-760b-4a8d-bb26-33dab7d428de + status: 201 Created + code: 201 + duration: 877.97825ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -169,8 +275,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -178,22 +284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 1814 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "19730" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,13 +305,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c657132a-aca3-48d5-b429-0d312c88292b - X-Total-Count: - - "75" + - 8966757e-284d-4e06-9b9b-e2e1f9ff828c status: 200 OK code: 200 - duration: 43.957334ms - - id: 4 + duration: 132.995291ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -222,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -231,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1352 + content_length: 1814 uncompressed: false - body: '{"local_images":[{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"3b131f0d-7075-494e-9c86-b2c424007a0a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"63d40353-5519-46d0-9172-ccf4885954e1","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1352" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:12 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,50 +354,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ca968dc-160e-4890-b598-fa66223c9ca8 + - 31a3812b-c719-4655-86db-348a6e6beb38 status: 200 OK code: 200 - duration: 131.247833ms - - id: 5 + duration: 136.414666ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 687 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.365504Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.365504Z","id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.72.0/22","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"},{"created_at":"2025-06-10T15:30:12.365504Z","id":"d37e7110-41ec-41c0-a7af-e34fe2d68868","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a5bc::/64","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}],"tags":[],"updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' headers: Content-Length: - - "1106" + - "687" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,48 +403,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a74b8696-adea-4ef8-b7cb-784071e7decc + - 59260846-b1dc-4219-957a-39fa595aa9b9 status: 200 OK code: 200 - duration: 852.681417ms - - id: 6 + duration: 54.250709ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9e6e3c4d-3330-4922-82f2-49fd14278f67 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 424 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.365504Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.365504Z","id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.72.0/22","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"},{"created_at":"2025-06-10T15:30:12.365504Z","id":"d37e7110-41ec-41c0-a7af-e34fe2d68868","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a5bc::/64","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}],"tags":[],"updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}' + body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":false,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.637791Z"}' headers: Content-Length: - - "1106" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,29 +454,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63a5d090-21d4-4672-b2bd-f683b4fbc16f + - 1ec4cb81-881d-4c1f-bbcc-356815d6aafc status: 200 OK code: 200 - duration: 29.828ms - - id: 7 + duration: 92.316542ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 321 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"63d40353-5519-46d0-9172-ccf4885954e1","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -382,22 +484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:12.563745+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' headers: Content-Length: - - "1814" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,11 +505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8de4c247-3f6d-4ebc-b490-8081c9027f8f - status: 201 Created - code: 201 - duration: 940.001625ms - - id: 8 + - 6cecd011-b899-4bad-a222-49f54f6b1ca7 + status: 200 OK + code: 200 + duration: 33.472875ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -424,8 +524,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc method: GET response: proto: HTTP/2.0 @@ -433,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:12.563745+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' headers: Content-Length: - - "1814" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,11 +554,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfde5e3b-b687-4e63-8321-c23e3f447b38 + - dbbe336f-c946-4a47-a38a-b4d494a8627d status: 200 OK code: 200 - duration: 233.711917ms - - id: 9 + duration: 49.155833ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 214 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1082 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' + headers: + Content-Length: + - "1082" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:10 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dc26add6-0194-4cce-a351-d797d21163d9 + status: 200 OK + code: 200 + duration: 668.102292ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -473,8 +624,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 method: GET response: proto: HTTP/2.0 @@ -482,20 +633,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1082 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:12.563745+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' headers: Content-Length: - - "1814" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,11 +654,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e6787c4-fd5a-4f87-af93-98ccfd85c335 + - 332fcb2f-767c-4ff4-a365-af7bca057bb2 status: 200 OK code: 200 - duration: 338.831334ms - - id: 10 + duration: 47.963625ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -522,8 +673,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -531,20 +682,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.689945Z","id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.689945Z","id":"edcdbebc-9551-48c8-bceb-68d2b4f4c50d","product_resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.689945Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:13 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,11 +703,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad9fa74b-7233-4030-8739-d7a69cc5bca4 + - 634499da-1f37-4519-875d-fb924f557b3c status: 200 OK code: 200 - duration: 57.319167ms - - id: 11 + duration: 42.544166ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -573,8 +724,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action method: POST response: proto: HTTP/2.0 @@ -584,7 +735,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/action","href_result":"/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0","id":"9c2e08c2-20b3-4d03-b727-f5bc90342bd5","progress":0,"started_at":"2025-06-10T15:30:14.300380+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action","href_result":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","id":"305216fc-fc7c-48c7-a230-58735921b4be","progress":0,"started_at":"2025-06-30T15:02:14.193324+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -593,11 +744,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/9c2e08c2-20b3-4d03-b727-f5bc90342bd5 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/305216fc-fc7c-48c7-a230-58735921b4be Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,11 +756,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6bc8859b-695e-4179-aae2-1649da849535 + - 2ede365d-c43a-407f-85ff-3e3b1562861a status: 202 Accepted code: 202 - duration: 553.84175ms - - id: 12 + duration: 379.27275ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -624,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -635,7 +786,7 @@ interactions: trailer: {} content_length: 1836 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:13.953878+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:13.895221+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1836" @@ -644,9 +795,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:14 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,11 +805,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af65d6ec-4e92-42e2-adb9-199181d5577a + - 2a8a85bd-9ea7-44ed-b42e-67193bdf4318 status: 200 OK code: 200 - duration: 246.105917ms - - id: 13 + duration: 156.999459ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -673,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -684,7 +835,7 @@ interactions: trailer: {} content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1970" @@ -693,9 +844,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:19 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,11 +854,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac671e76-541c-4909-95e0-55f7c97eeb9e + - 7b86dd16-7544-4856-bc05-d65862380c91 status: 200 OK code: 200 - duration: 204.92075ms - - id: 14 + duration: 218.737542ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -722,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -733,7 +884,7 @@ interactions: trailer: {} content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1970" @@ -742,9 +893,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,11 +903,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50706c52-fd74-4cdb-ad65-43b6db6b9d13 + - 5ebb9409-4b23-467c-9f06-37d224b2d6d3 status: 200 OK code: 200 - duration: 183.80775ms - - id: 15 + duration: 154.475125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -771,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -782,7 +933,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' headers: Content-Length: - "143" @@ -791,9 +942,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,11 +952,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 580b3e91-eb8a-484a-86a1-b9a484029451 + - 9240cf2b-9e60-4d86-bce3-63c2a8ddf630 status: 404 Not Found code: 404 - duration: 31.649708ms - - id: 16 + duration: 34.389958ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -820,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -829,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.689945Z","id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.689945Z","id":"edcdbebc-9551-48c8-bceb-68d2b4f4c50d","product_resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.689945Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,11 +1001,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a37d8b1f-b215-444f-983b-c07274f620d3 + - be216691-8de3-4841-8534-1105dd63cba8 status: 200 OK code: 200 - duration: 61.189458ms - - id: 17 + duration: 46.698875ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -869,8 +1020,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/user_data method: GET response: proto: HTTP/2.0 @@ -889,9 +1040,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,11 +1050,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56af5b17-ee40-46f7-8642-0f95c75cc18b + - 173c8f36-98e4-4119-bdad-b408a17d4b01 status: 200 OK code: 200 - duration: 55.511959ms - - id: 18 + duration: 67.682166ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -918,8 +1069,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics method: GET response: proto: HTTP/2.0 @@ -938,11 +1089,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:19 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,13 +1101,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ea500dc-f043-4eda-8d90-d0db219e51d5 + - 5e38e57b-0d3d-46ce-941a-8e6005ceae96 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 60.757167ms - - id: 19 + duration: 68.61575ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -971,8 +1122,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -982,7 +1133,7 @@ interactions: trailer: {} content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1970" @@ -991,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:20 GMT + - Mon, 30 Jun 2025 15:02:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,11 +1152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b184d7b-a735-4383-b3b2-e4914e01391b + - aa84af6f-5b55-4c94-8fbc-4771533fbd74 status: 200 OK code: 200 - duration: 205.899333ms - - id: 20 + duration: 172.419875ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1016,14 +1167,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67"}' + body: '{"private_network_id":"59bad5bb-2572-4799-9588-419baf558105"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics method: POST response: proto: HTTP/2.0 @@ -1033,7 +1184,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1042,9 +1193,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Mon, 30 Jun 2025 15:02:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,11 +1203,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 669cab03-baae-4e87-98f2-f1908f4b213c + - cd328b41-6de8-4155-89f2-e34cc94c3e4a status: 201 Created code: 201 - duration: 1.061435792s - - id: 21 + duration: 5.516659667s + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1071,8 +1222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1082,7 +1233,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1091,9 +1242,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:21 GMT + - Mon, 30 Jun 2025 15:02:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,11 +1252,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1352a8cf-68c0-4198-b930-2ed1b08a8e1c + - 08f45186-098e-4736-a28c-4e50ca211978 status: 200 OK code: 200 - duration: 91.249541ms - - id: 22 + duration: 114.271125ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1120,8 +1271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1131,7 +1282,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,9 +1291,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:26 GMT + - Mon, 30 Jun 2025 15:02:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,11 +1301,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75538442-2d0d-4f8d-be4e-14b8ee29faf1 + - 6efaab30-a3d4-49bd-8cd2-f4388bc3bb5b status: 200 OK code: 200 - duration: 87.892167ms - - id: 23 + duration: 117.817917ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1169,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1180,7 +1331,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,9 +1340,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Mon, 30 Jun 2025 15:02:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,11 +1350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78f884d3-5bec-4652-b0c6-0f41e604e0e4 + - 4e30cbf5-b98f-4832-a957-84db22de83fb status: 200 OK code: 200 - duration: 77.069041ms - - id: 24 + duration: 118.217917ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1218,8 +1369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1229,7 +1380,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,9 +1389,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:36 GMT + - Mon, 30 Jun 2025 15:02:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,11 +1399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf079507-b672-4f6a-8b8d-ef7a8dec554b + - 43d22d55-5faf-4225-9971-687c7df610cd status: 200 OK code: 200 - duration: 86.503834ms - - id: 25 + duration: 86.728791ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1267,8 +1418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1278,7 +1429,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,9 +1438,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:41 GMT + - Mon, 30 Jun 2025 15:02:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,11 +1448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4393836-a29b-493c-a3a4-3b8d760f63d4 + - c826c3b4-c979-4963-bcbb-51f69479d55e status: 200 OK code: 200 - duration: 55.999792ms - - id: 26 + duration: 76.45225ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1316,8 +1467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1327,7 +1478,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,9 +1487,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,11 +1497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 404ca19c-fa02-4208-8ff3-b7786bf04fb0 + - 8648dc09-02a2-4ccc-a105-24d60749abf1 status: 200 OK code: 200 - duration: 54.500791ms - - id: 27 + duration: 73.15925ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1365,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1376,7 +1527,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1385,9 +1536,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:52 GMT + - Mon, 30 Jun 2025 15:02:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,11 +1546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c590e123-082b-4f2d-aa27-e5020d0fb843 + - 5c51fc81-3b09-443e-b19b-653846dca8d2 status: 200 OK code: 200 - duration: 63.282084ms - - id: 28 + duration: 144.897042ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1414,8 +1565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1425,7 +1576,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1434,9 +1585,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:57 GMT + - Mon, 30 Jun 2025 15:03:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,11 +1595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de902b85-50ac-449e-a854-d77e45136efd + - 0b543b49-125e-4a85-a12d-f84698cbcbcf status: 200 OK code: 200 - duration: 68.116333ms - - id: 29 + duration: 65.824792ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1463,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1474,7 +1625,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1483,9 +1634,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Mon, 30 Jun 2025 15:03:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,11 +1644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a3ef396-d49d-4291-9d6d-aa519463b7ba + - 77011050-b01a-41f2-acda-352aed7017c4 status: 200 OK code: 200 - duration: 67.120167ms - - id: 30 + duration: 62.510875ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1512,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1523,7 +1674,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1532,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:07 GMT + - Mon, 30 Jun 2025 15:03:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,11 +1693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed9c08d2-4d02-4067-a84d-7dee6278d569 + - d0fef04c-cccc-48ad-b28f-b82ef354a9a7 status: 200 OK code: 200 - duration: 57.456334ms - - id: 31 + duration: 65.3165ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1561,8 +1712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1572,7 +1723,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:30:20.725261+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1581,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:12 GMT + - Mon, 30 Jun 2025 15:03:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1591,11 +1742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32511815-741a-4c16-9bb7-4c18a0d2d6c6 + - a0ba84fe-9e43-49a0-89b5-07a2ddc54518 status: 200 OK code: 200 - duration: 71.992042ms - - id: 32 + duration: 61.874875ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1610,8 +1761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1621,7 +1772,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1630,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Mon, 30 Jun 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1640,11 +1791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c950d42e-44ef-4440-b7c0-372a11969d06 + - ef8cdce7-8a2d-4862-aeb2-b3c416ac0e44 status: 200 OK code: 200 - duration: 78.665125ms - - id: 33 + duration: 74.315208ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1659,8 +1810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -1670,7 +1821,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1679,9 +1830,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Mon, 30 Jun 2025 15:03:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1689,11 +1840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4987754-3f6b-42d1-8500-352ba3ee88ba + - 4d8290bd-8f75-4212-bd67-0da0d7b8e1b7 status: 200 OK code: 200 - duration: 69.868166ms - - id: 34 + duration: 71.602459ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1708,8 +1859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -1719,7 +1870,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -1728,9 +1879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:17 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1738,11 +1889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc20999b-36cd-45ef-9732-f97c528594a5 + - 153646e1-669e-4d04-85b9-57e3c3cbcc68 status: 200 OK code: 200 - duration: 457.0955ms - - id: 35 + duration: 196.913292ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1757,8 +1908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9e6e3c4d-3330-4922-82f2-49fd14278f67&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=59bad5bb-2572-4799-9588-419baf558105&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1766,20 +1917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a5bc:8c31:80be:e46e:b6f4/64","created_at":"2025-06-10T15:30:21.272054Z","id":"4f0538bb-f40d-4f17-b1b9-de33cd91c4be","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d37e7110-41ec-41c0-a7af-e34fe2d68868"},"tags":[],"updated_at":"2025-06-10T15:30:21.272054Z","zone":null},{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1102" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1787,11 +1938,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebd12c53-b00d-4775-8e61-2640f7443038 + - 26fd9532-2f6f-4c27-8dbf-29f20cefa0b4 status: 200 OK code: 200 - duration: 55.129333ms - - id: 36 + duration: 57.335459ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1806,8 +1957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1815,20 +1966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1836,11 +1987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf45c83-90d4-47c7-a203-5adeed90bba2 + - ccde7469-071c-43f7-b17a-66bb8dfb0212 status: 200 OK code: 200 - duration: 55.585208ms - - id: 37 + duration: 60.043708ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1855,8 +2006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A43%3A95&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1864,20 +2015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1885,11 +2036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 204680d5-89aa-4887-8a78-ca2a610dfeb6 + - 80aa6c46-4920-494f-9f2b-f1e72c1a2845 status: 200 OK code: 200 - duration: 90.1065ms - - id: 38 + duration: 67.687583ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1904,8 +2055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A43%3A95&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1913,20 +2064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1934,11 +2085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e2fcfff-b95e-4d90-8c61-57f18509a30d + - 2c0d3733-dee9-4345-a3ef-1eb96ca36c6e status: 200 OK code: 200 - duration: 61.852916ms - - id: 39 + duration: 49.37ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1953,8 +2104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1962,20 +2113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1983,11 +2134,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f505e297-ff6d-46b1-a57c-a9ba732e914d + - 850640f5-09af-42e7-b583-faeb6b0707b3 status: 200 OK code: 200 - duration: 61.721209ms - - id: 40 + duration: 52.3965ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2002,8 +2153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/320cfd30-7ab1-4dc9-b8eb-bad2fa329bde + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc method: GET response: proto: HTTP/2.0 @@ -2011,20 +2162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 435 + content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.157188Z","custom_routes_propagation_enabled":false,"id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-10T15:30:12.157188Z"}' + body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' headers: Content-Length: - - "435" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2032,11 +2183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39a59158-c0f8-4a2f-92e1-263ce20f599d + - 932e28f1-a4f1-44a4-9835-090233e07925 status: 200 OK code: 200 - duration: 26.197458ms - - id: 41 + duration: 30.063792ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2051,8 +2202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9e6e3c4d-3330-4922-82f2-49fd14278f67 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 method: GET response: proto: HTTP/2.0 @@ -2060,20 +2211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1106 + content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.365504Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:12.365504Z","id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.72.0/22","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"},{"created_at":"2025-06-10T15:30:12.365504Z","id":"d37e7110-41ec-41c0-a7af-e34fe2d68868","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a5bc::/64","updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}],"tags":[],"updated_at":"2025-06-10T15:30:12.365504Z","vpc_id":"320cfd30-7ab1-4dc9-b8eb-bad2fa329bde"}' + body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' headers: Content-Length: - - "1106" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2081,11 +2232,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae9255ae-2a5a-428e-9b21-286d01825fcb + - 01cdb23f-06a7-47bb-9f92-ac7fc0bed515 status: 200 OK code: 200 - duration: 20.412166ms - - id: 42 + duration: 41.434042ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2100,8 +2251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -2111,7 +2262,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -2120,9 +2271,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2130,11 +2281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06f10aed-45c0-4870-a21f-509fcc4adcbe + - 0e252e0f-db03-4b88-a4da-5b1709a16ae6 status: 200 OK code: 200 - duration: 182.564041ms - - id: 43 + duration: 136.894667ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2149,8 +2300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -2160,7 +2311,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' headers: Content-Length: - "143" @@ -2169,9 +2320,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2179,11 +2330,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81e756eb-fdbf-413d-a3d8-a55349ab4bb1 + - a7c2a7de-3d8e-4853-9a3d-5b1a11a020ad status: 404 Not Found code: 404 - duration: 29.9825ms - - id: 44 + duration: 29.915708ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2198,8 +2349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -2207,20 +2358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.689945Z","id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.689945Z","id":"edcdbebc-9551-48c8-bceb-68d2b4f4c50d","product_resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.689945Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2228,11 +2379,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61bafa4e-4277-4607-bee9-e9aba00cc082 + - d8d6c253-80f8-4e30-b65f-75d67822fd67 status: 200 OK code: 200 - duration: 44.888667ms - - id: 45 + duration: 48.241083ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2247,8 +2398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/user_data method: GET response: proto: HTTP/2.0 @@ -2267,9 +2418,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2277,11 +2428,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0545d9cd-b611-4802-9b37-2e9e48c2b12b + - 1698303a-bf1b-4bfd-905a-d3834a00f2bb status: 200 OK code: 200 - duration: 73.405958ms - - id: 46 + duration: 87.680625ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2296,8 +2447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics method: GET response: proto: HTTP/2.0 @@ -2307,7 +2458,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2316,11 +2467,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2328,13 +2479,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e52250a7-8c1a-42aa-92dc-d68ced88ce02 + - d1f132e2-fcbf-460d-aa85-9ba55ae382a8 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 68.521375ms - - id: 47 + duration: 53.354583ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2349,8 +2500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2358,20 +2509,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a5bc:8c31:80be:e46e:b6f4/64","created_at":"2025-06-10T15:30:21.272054Z","id":"4f0538bb-f40d-4f17-b1b9-de33cd91c4be","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d37e7110-41ec-41c0-a7af-e34fe2d68868"},"tags":[],"updated_at":"2025-06-10T15:30:21.272054Z","zone":null},{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1102" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:22 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2379,11 +2530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20af5773-8062-4ce0-87e0-9c67ab006716 + - f1ea38c7-5026-49e5-9f3f-e3eeea072fcd status: 200 OK code: 200 - duration: 36.605416ms - - id: 48 + duration: 32.255417ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2398,8 +2549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -2409,7 +2560,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2418,9 +2569,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:18 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2428,11 +2579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 613b2e0b-7e1c-4767-bcd4-32d19a3d4485 + - bf75116e-c97c-4bd4-a5f0-dbe0dd0c1001 status: 200 OK code: 200 - duration: 58.853459ms - - id: 49 + duration: 121.507666ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2447,8 +2598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -2458,7 +2609,7 @@ interactions: trailer: {} content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2428" @@ -2467,9 +2618,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2477,11 +2628,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb6edab5-941a-4bdc-8c36-1d8bcc46cebc + - f5d9e114-906d-4624-988b-898b6933ef23 status: 200 OK code: 200 - duration: 132.818208ms - - id: 50 + duration: 127.411291ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2496,8 +2647,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9e6e3c4d-3330-4922-82f2-49fd14278f67&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=59bad5bb-2572-4799-9588-419baf558105&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2505,20 +2656,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1102 + content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a5bc:8c31:80be:e46e:b6f4/64","created_at":"2025-06-10T15:30:21.272054Z","id":"4f0538bb-f40d-4f17-b1b9-de33cd91c4be","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"d37e7110-41ec-41c0-a7af-e34fe2d68868"},"tags":[],"updated_at":"2025-06-10T15:30:21.272054Z","zone":null},{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1102" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2526,11 +2677,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e489fa82-9388-40dd-9500-cf3203953677 + - 9214dcf4-c7be-42c1-8510-f0f3af2535d5 status: 200 OK code: 200 - duration: 58.663084ms - - id: 51 + duration: 46.010916ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2545,8 +2696,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2554,20 +2705,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2575,11 +2726,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5860c829-cb59-4e8c-81b1-23a004864cf6 + - f5d66008-698e-470d-8a67-35d3b14ce419 status: 200 OK code: 200 - duration: 46.42775ms - - id: 52 + duration: 54.2745ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2594,8 +2745,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A43%3A95&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2603,20 +2754,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2624,11 +2775,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8338814d-8751-41c5-b305-6c11c4647597 + - c156fe6a-4cb9-495f-9686-1675946be875 status: 200 OK code: 200 - duration: 53.555583ms - - id: 53 + duration: 56.110125ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2643,8 +2794,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) 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_id=276014fc-bd7c-47b2-a3f4-4f22c4a2da7c&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2652,20 +2803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2673,11 +2824,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d22aebff-e2c6-4990-a7df-1e840da22462 + - abfc203a-fd6f-4d5d-947c-ec39edf7ca9e status: 200 OK code: 200 - duration: 52.409708ms - - id: 54 + duration: 61.781708ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2692,8 +2843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A1b%3A43%3A95&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2701,20 +2852,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 550 + content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.72.2/22","created_at":"2025-06-10T15:30:20.924544Z","id":"36c3d344-6825-412f-93f3-6e6f08f14ba9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","mac_address":"02:00:00:1B:43:95","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06ceac6c-345f-4e7f-93af-572c2ac5f05a"},"tags":[],"updated_at":"2025-06-10T15:30:20.924544Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' headers: Content-Length: - - "550" + - "535" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2722,11 +2873,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d236aa4-f39e-42cc-bbc9-6f4a4cb10a82 + - c38200ee-de87-4c5b-824c-6a42f10398bb status: 200 OK code: 200 - duration: 52.418834ms - - id: 55 + duration: 64.25475ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2741,8 +2892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -2752,7 +2903,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-10T15:30:20.561050+00:00","id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","ipam_ip_ids":["36c3d344-6825-412f-93f3-6e6f08f14ba9","4f0538bb-f40d-4f17-b1b9-de33cd91c4be"],"mac_address":"02:00:00:1b:43:95","modification_date":"2025-06-10T15:31:13.978704+00:00","private_network_id":"9e6e3c4d-3330-4922-82f2-49fd14278f67","server_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2761,9 +2912,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2771,11 +2922,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab44ab3c-4294-4f27-b08d-7a9fc6ef9640 + - b64354db-9a22-460e-834e-b6b5d236ccc9 status: 200 OK code: 200 - duration: 78.27475ms - - id: 56 + duration: 70.097541ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2790,8 +2941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: DELETE response: proto: HTTP/2.0 @@ -2808,9 +2959,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:19 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2818,11 +2969,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6eac05f-3f66-4a3f-aa7e-4fce16f3da97 + - eabd5cec-c236-4edf-b5b4-cc129579fb5c status: 204 No Content code: 204 - duration: 374.99825ms - - id: 57 + duration: 380.339292ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2837,8 +2988,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/private_nics/276014fc-bd7c-47b2-a3f4-4f22c4a2da7c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 method: GET response: proto: HTTP/2.0 @@ -2848,7 +2999,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"276014fc-bd7c-47b2-a3f4-4f22c4a2da7c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","type":"not_found"}' headers: Content-Length: - "148" @@ -2857,9 +3008,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2867,11 +3018,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a787efa7-cead-4567-8039-d68a640bf414 + - 73288f9d-4ffd-41dd-a5f5-5c34ef4fc2c2 status: 404 Not Found code: 404 - duration: 71.940041ms - - id: 58 + duration: 80.942958ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2886,8 +3037,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -2897,7 +3048,7 @@ interactions: trailer: {} content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:30:17.948338+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1970" @@ -2906,9 +3057,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2916,11 +3067,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e2cfcdc-4911-496e-9db6-7c5fbc355339 + - e1b16f34-c591-4dfc-af72-3860f1210c0b status: 200 OK code: 200 - duration: 252.83ms - - id: 59 + duration: 167.514708ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2935,8 +3086,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -2944,20 +3095,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 705 + content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.689945Z","id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-10T15:30:12.689945Z","id":"edcdbebc-9551-48c8-bceb-68d2b4f4c50d","product_resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:30:12.689945Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' headers: Content-Length: - - "705" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2965,11 +3116,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 074f6b45-8c02-4cb7-b8a1-1f6920d64ac0 + - 28fb32da-25f2-4f48-852c-51c52bdbdeee status: 200 OK code: 200 - duration: 51.407458ms - - id: 60 + duration: 37.473292ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2986,8 +3137,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action method: POST response: proto: HTTP/2.0 @@ -2997,7 +3148,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0/action","href_result":"/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0","id":"d7ce98f3-fd9e-4e87-9ec0-62c965a21e0a","progress":0,"started_at":"2025-06-10T15:31:20.627087+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action","href_result":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","id":"66edf16b-c51f-49da-ae38-c364430e22e0","progress":0,"started_at":"2025-06-30T15:03:24.734144+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3006,11 +3157,11 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/d7ce98f3-fd9e-4e87-9ec0-62c965a21e0a + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/66edf16b-c51f-49da-ae38-c364430e22e0 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3018,11 +3169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3773644-158e-44a6-908c-175dc2a81886 + - f8103713-0e82-4d59-b755-e9e72b931f65 status: 202 Accepted code: 202 - duration: 314.733375ms - - id: 61 + duration: 431.82825ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3037,8 +3188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3048,7 +3199,7 @@ interactions: trailer: {} content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:20.422097+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1930" @@ -3057,9 +3208,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:20 GMT + - Mon, 30 Jun 2025 15:03:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3067,11 +3218,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8220a14c-3572-49c2-9650-3d988bba859a + - 06c4026c-7d04-4933-90ac-87e6e170da83 status: 200 OK code: 200 - duration: 142.546417ms - - id: 62 + duration: 162.874792ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3086,8 +3237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9e6e3c4d-3330-4922-82f2-49fd14278f67 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 method: DELETE response: proto: HTTP/2.0 @@ -3104,9 +3255,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Mon, 30 Jun 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3114,11 +3265,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6fe0fb6-ace9-4d56-9a69-94f7295652ab + - a93797d2-7fd1-4028-8481-b41a684e30d0 status: 204 No Content code: 204 - duration: 1.35557725s - - id: 63 + duration: 5.422629625s + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3133,8 +3284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/320cfd30-7ab1-4dc9-b8eb-bad2fa329bde + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc method: DELETE response: proto: HTTP/2.0 @@ -3151,9 +3302,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:21 GMT + - Mon, 30 Jun 2025 15:03:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3161,11 +3312,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cee64dd7-3392-49b2-a2b6-4649a9d086b2 + - 0fb3cfcd-b965-4569-b9ce-2697439d0320 status: 204 No Content code: 204 - duration: 96.396042ms - - id: 64 + duration: 85.294709ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3180,8 +3331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3191,7 +3342,7 @@ interactions: trailer: {} content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:20.422097+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1930" @@ -3200,9 +3351,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:26 GMT + - Mon, 30 Jun 2025 15:03:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3210,11 +3361,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dc9923c-ec11-4354-8490-d2c6be1dfbb2 + - 1b8945aa-4e19-4a31-96f6-99c177784d25 status: 200 OK code: 200 - duration: 388.934041ms - - id: 65 + duration: 176.533875ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3229,8 +3380,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3240,7 +3391,7 @@ interactions: trailer: {} content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:20.422097+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1930" @@ -3249,9 +3400,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:31 GMT + - Mon, 30 Jun 2025 15:03:35 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3259,11 +3410,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5239de05-6e7c-4015-b4f3-69d4ae644f02 + - a58b0f7f-bd39-4f14-bc42-3ad2dc7d419e status: 200 OK code: 200 - duration: 140.609125ms - - id: 66 + duration: 145.717583ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3278,8 +3429,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3289,7 +3440,7 @@ interactions: trailer: {} content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"201","node_id":"91","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:20.422097+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1930" @@ -3298,9 +3449,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:36 GMT + - Mon, 30 Jun 2025 15:03:40 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3308,11 +3459,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97b617dc-878d-4d94-8f6c-2e71c5e1ceab + - f18f6429-1863-4e7e-9400-5b6600944be2 status: 200 OK code: 200 - duration: 218.926875ms - - id: 67 + duration: 258.298875ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3327,8 +3478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3338,7 +3489,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:36.624889+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:40.446789+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -3347,9 +3498,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Mon, 30 Jun 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3357,11 +3508,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 380bb587-dc8c-4211-a73b-dbc8283024ec + - 90e6d0b7-562c-4ab0-80ab-2fd2741bc056 status: 200 OK code: 200 - duration: 182.422667ms - - id: 68 + duration: 307.094709ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3376,8 +3527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3387,7 +3538,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-10T15:30:12.563745+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","image":{"arch":"x86_64","creation_date":"2025-02-03T13:22:53.227105+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"63d40353-5519-46d0-9172-ccf4885954e1","modification_date":"2025-02-03T13:22:53.227105+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"905845fc-a6eb-4401-8e9d-5810071b7119","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:b5:0b:47","maintenances":[],"modification_date":"2025-06-10T15:31:36.624889+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:40.446789+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -3396,9 +3547,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:41 GMT + - Mon, 30 Jun 2025 15:03:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3406,11 +3557,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d255c62c-7feb-4328-af6b-18fbb6a1bfe3 + - a16e71bc-0e3f-4a08-a5fe-79d2f5740f50 status: 200 OK code: 200 - duration: 137.876ms - - id: 69 + duration: 136.623208ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3425,8 +3576,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: DELETE response: proto: HTTP/2.0 @@ -3443,9 +3594,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3453,11 +3604,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b724b864-3a76-44f2-98f2-5268d7e21249 + - fdb8f3f3-649f-4ba1-9538-8de44d0603a7 status: 204 No Content code: 204 - duration: 227.880625ms - - id: 70 + duration: 292.668083ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3472,8 +3623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3483,7 +3634,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","type":"not_found"}' headers: Content-Length: - "143" @@ -3492,9 +3643,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3502,11 +3653,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbfea44a-c582-442c-a5de-cb1704a191fb + - 5f16cf11-993a-4073-8813-ed9cd147ae24 status: 404 Not Found code: 404 - duration: 87.827542ms - - id: 71 + duration: 95.017666ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3521,8 +3672,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -3532,7 +3683,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' headers: Content-Length: - "143" @@ -3541,9 +3692,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3551,11 +3702,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d18fc2b-fc04-4e4a-ba0f-5d233b27b78e + - 2fbf6011-4483-427f-a020-70878af51b5e status: 404 Not Found code: 404 - duration: 32.680208ms - - id: 72 + duration: 52.600875ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3570,8 +3721,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: GET response: proto: HTTP/2.0 @@ -3579,20 +3730,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 498 + content_length: 484 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:12.689945Z","id":"fe21ffb9-0fec-4fbf-b6ee-87497d6308fb","last_detached_at":"2025-06-10T15:31:42.219639Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"905845fc-a6eb-4401-8e9d-5810071b7119","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-10T15:31:42.219639Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":"2025-06-30T15:03:46.267976Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:03:46.267976Z","zone":"fr-par-1"}' headers: Content-Length: - - "498" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3600,11 +3751,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9947afcc-89e2-470e-a253-f6d8eb9c3103 + - d8695b73-e755-42ce-bbbd-83976619a158 status: 200 OK code: 200 - duration: 44.807916ms - - id: 73 + duration: 47.723875ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3619,8 +3770,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/fe21ffb9-0fec-4fbf-b6ee-87497d6308fb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f method: DELETE response: proto: HTTP/2.0 @@ -3637,9 +3788,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3647,11 +3798,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af5c2f1b-7969-4530-9c2b-1a9808857a5f + - 0f1e2417-7c18-48a9-b67c-2cc81eb01b66 status: 204 No Content code: 204 - duration: 76.490667ms - - id: 74 + duration: 81.40675ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3666,8 +3817,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/98299935-70b0-4a02-bc8c-aa645bfa0bc0 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 method: GET response: proto: HTTP/2.0 @@ -3677,7 +3828,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"98299935-70b0-4a02-bc8c-aa645bfa0bc0","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","type":"not_found"}' headers: Content-Length: - "143" @@ -3686,9 +3837,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:42 GMT + - Mon, 30 Jun 2025 15:03:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3696,7 +3847,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef4d5fa7-f059-4157-b7c7-9d045236501b + - a6653f98-4ef5-44de-8ab6-979072b6ead5 status: 404 Not Found code: 404 - duration: 82.406209ms + duration: 88.583042ms diff --git a/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml index c890e89864..a405bcb6ff 100644 --- a/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.079237Z","custom_routes_propagation_enabled":false,"id":"52d0042b-9d4a-451a-9111-8dfff99316de","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-06-10T15:30:46.079237Z"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "405" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 747c1ece-3701-4346-a157-f64e36f1f3ee - status: 200 OK - code: 200 - duration: 227.333167ms + - fb3e70ce-aaea-435f-83a1-acb0a2f34076 + status: 500 Internal Server Error + code: 500 + duration: 159.238834ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 102 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/52d0042b-9d4a-451a-9111-8dfff99316de - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.079237Z","custom_routes_propagation_enabled":false,"id":"52d0042b-9d4a-451a-9111-8dfff99316de","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-06-10T15:30:46.079237Z"}' + body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":false,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.617828Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,29 +99,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49dd1f24-f04e-4790-aeee-532618307dfe + - 990ce443-c5d8-45b6-ace8-2214d3f01faa status: 200 OK code: 200 - duration: 26.007542ms + duration: 89.30825ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 175 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-brave-proskuriakova","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -127,20 +129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.176839Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","name":"tf-pn-brave-proskuriakova","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:46.176839Z","id":"4fbdee57-3724-4251-bf3e-fd4eb1426085","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"},{"created_at":"2025-06-10T15:30:46.176839Z","id":"f92cf676-4940-46a1-9b33-017e15253a3d","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:45e4::/64","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}],"tags":[],"updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' headers: Content-Length: - - "1095" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,10 +150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32c454eb-78f7-49bc-96cb-9bfff12b4f08 + - 16781919-7b25-4618-8fd4-0e2fba28d816 status: 200 OK code: 200 - duration: 681.041958ms + duration: 37.841667ms - id: 3 request: proto: HTTP/1.1 @@ -167,8 +169,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77d729ef-6703-475c-9fa5-c6d54f8a3f52 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 method: GET response: proto: HTTP/2.0 @@ -176,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.176839Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","name":"tf-pn-brave-proskuriakova","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:46.176839Z","id":"4fbdee57-3724-4251-bf3e-fd4eb1426085","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"},{"created_at":"2025-06-10T15:30:46.176839Z","id":"f92cf676-4940-46a1-9b33-017e15253a3d","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:45e4::/64","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}],"tags":[],"updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' headers: Content-Length: - - "1095" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:46 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +199,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d854013c-64bd-46bd-a971-377c783c252d + - 59831f66-6242-4ebc-946d-7ff8b87395d0 status: 200 OK code: 200 - duration: 20.878625ms + duration: 27.277833ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 174 + content_length: 213 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52"},"is_ipv6":false,"address":"172.16.32.5","tags":[]}' + body: '{"name":"tf-pn-hardcore-cannon","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: proto: HTTP/2.0 @@ -227,20 +229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1067 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' headers: Content-Length: - - "369" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c63a9a0b-fa76-46a0-856b-3ec6c74e6efc + - 8cf08492-2d1d-4587-b564-edea87b31622 status: 200 OK code: 200 - duration: 268.756167ms + duration: 570.136458ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea method: GET response: proto: HTTP/2.0 @@ -276,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1067 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' headers: Content-Length: - - "369" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,48 +299,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10641c26-9ed3-45ba-b8f3-f4c696933607 + - eaab4bfa-dc63-4b3c-9e4f-e542220c422a status: 200 OK code: 200 - duration: 30.991833ms + duration: 27.096ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 174 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea"},"is_ipv6":false,"address":"172.16.32.5","tags":[]}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77d729ef-6703-475c-9fa5-c6d54f8a3f52 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.176839Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","name":"tf-pn-brave-proskuriakova","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:46.176839Z","id":"4fbdee57-3724-4251-bf3e-fd4eb1426085","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"},{"created_at":"2025-06-10T15:30:46.176839Z","id":"f92cf676-4940-46a1-9b33-017e15253a3d","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:45e4::/64","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}],"tags":[],"updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' headers: Content-Length: - - "1095" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d170b5f0-0ce7-401c-bcba-b20ccfb98a17 + - f2cba871-f9e2-4193-958e-0409dc224364 status: 200 OK code: 200 - duration: 30.000917ms + duration: 827.093375ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -374,20 +378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56d37798-42d5-4a6b-a9e3-831f06be88c0 + - a33615bf-5d81-4ba9-935f-fc4ed88a949e status: 200 OK code: 200 - duration: 30.076042ms + duration: 63.653666ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea method: GET response: proto: HTTP/2.0 @@ -423,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1067 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' headers: Content-Length: - - "369" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21a6f878-ece8-480b-aa76-11025f8ac9fa + - 1c302d7a-11d8-4263-a8b7-4122351aa887 status: 200 OK code: 200 - duration: 22.114959ms + duration: 26.083084ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/52d0042b-9d4a-451a-9111-8dfff99316de + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -472,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.079237Z","custom_routes_propagation_enabled":false,"id":"52d0042b-9d4a-451a-9111-8dfff99316de","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-06-10T15:30:46.079237Z"}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' headers: Content-Length: - - "405" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72e14e80-4d93-45f8-ab19-631788035e5d + - 67484400-c3e2-466a-9702-dd87075cc553 status: 200 OK code: 200 - duration: 28.789084ms + duration: 54.995292ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77d729ef-6703-475c-9fa5-c6d54f8a3f52 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -521,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.176839Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","name":"tf-pn-brave-proskuriakova","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:46.176839Z","id":"4fbdee57-3724-4251-bf3e-fd4eb1426085","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"},{"created_at":"2025-06-10T15:30:46.176839Z","id":"f92cf676-4940-46a1-9b33-017e15253a3d","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:45e4::/64","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}],"tags":[],"updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' headers: Content-Length: - - "1095" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27e158d5-1103-40b9-97a1-b8d95ec96e83 + - e62b4eff-dff9-40f8-aedf-bc0b4d5b1003 status: 200 OK code: 200 - duration: 29.267ms + duration: 26.935583ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 method: GET response: proto: HTTP/2.0 @@ -570,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 393 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' headers: Content-Length: - - "369" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 169341d0-b518-4a3c-8806-c04241e25049 + - c49df3a0-f43e-47ff-bfbc-9522602a3e27 status: 200 OK code: 200 - duration: 28.091291ms + duration: 31.590334ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77d729ef-6703-475c-9fa5-c6d54f8a3f52 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea method: GET response: proto: HTTP/2.0 @@ -619,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1095 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:46.176839Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","name":"tf-pn-brave-proskuriakova","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:46.176839Z","id":"4fbdee57-3724-4251-bf3e-fd4eb1426085","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"},{"created_at":"2025-06-10T15:30:46.176839Z","id":"f92cf676-4940-46a1-9b33-017e15253a3d","private_network_id":"77d729ef-6703-475c-9fa5-c6d54f8a3f52","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:45e4::/64","updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}],"tags":[],"updated_at":"2025-06-10T15:30:46.176839Z","vpc_id":"52d0042b-9d4a-451a-9111-8dfff99316de"}' + body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' headers: Content-Length: - - "1095" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b700396-2695-439b-95ed-f74e3aba8689 + - 2e3f5211-1543-4f63-b4f5-43bd28e2a1c5 status: 200 OK code: 200 - duration: 32.716167ms + duration: 27.518667ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -668,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71a8ed3b-dffe-4921-8553-4f83451829c1 + - 0fed4ba6-fb24-4eaf-8659-cb57e9988ebf status: 200 OK code: 200 - duration: 24.7835ms + duration: 32.820333ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea method: GET response: proto: HTTP/2.0 @@ -717,20 +721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1067 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-10T15:30:47.059173Z","id":"991e0088-54ae-498f-8e95-83f830a4fbc3","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"4fbdee57-3724-4251-bf3e-fd4eb1426085"},"tags":[],"updated_at":"2025-06-10T15:30:47.059173Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' headers: Content-Length: - - "369" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,11 +742,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71693877-d653-4500-a0d4-c6dd6b54358a + - 67a6ee73-3163-45ce-8c0f-0ccce3449f54 status: 200 OK code: 200 - duration: 30.007292ms + duration: 30.636833ms - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 358 + uncompressed: false + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + headers: + Content-Length: + - "358" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8caa41a-790b-42c7-9e13-d44a56cf476e + status: 200 OK + code: 200 + duration: 30.98525ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 358 + uncompressed: false + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + headers: + Content-Length: + - "358" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 93da5f5b-179c-4ea0-8084-a0ff44da017f + status: 200 OK + code: 200 + duration: 33.251208ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -759,8 +861,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: DELETE response: proto: HTTP/2.0 @@ -777,9 +879,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:47 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,11 +889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 24d11276-9795-49f0-bc7f-efaa4bc97c45 + - ca04a133-5f0f-4bc4-b0f4-56aeab21f6b2 status: 204 No Content code: 204 - duration: 54.384209ms - - id: 16 + duration: 40.613125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -806,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/77d729ef-6703-475c-9fa5-c6d54f8a3f52 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea method: DELETE response: proto: HTTP/2.0 @@ -824,9 +926,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,11 +936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00dd07c0-83cc-4f9e-be0b-223193b77347 + - 3ef2877a-c2f4-4dbe-83e7-5f0d68c2bad3 status: 204 No Content code: 204 - duration: 1.50758125s - - id: 17 + duration: 6.260028459s + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -853,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/52d0042b-9d4a-451a-9111-8dfff99316de + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 method: DELETE response: proto: HTTP/2.0 @@ -871,9 +973,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,11 +983,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523a640c-2a26-47c7-a0d5-70daadbe0d2b + - 643cc9cf-5014-4697-bc01-9da56917d79b status: 204 No Content code: 204 - duration: 111.173708ms - - id: 18 + duration: 81.763375ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -900,8 +1002,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -911,7 +1013,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"991e0088-54ae-498f-8e95-83f830a4fbc3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","type":"not_found"}' headers: Content-Length: - "123" @@ -920,9 +1022,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,11 +1032,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e56a1c-8503-4f8f-8aa5-7d6aa3c148b1 + - 9548355f-7d48-42d0-8bab-1c584d2afbcf status: 404 Not Found code: 404 - duration: 27.084417ms - - id: 19 + duration: 25.526583ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -949,8 +1051,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/991e0088-54ae-498f-8e95-83f830a4fbc3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d method: GET response: proto: HTTP/2.0 @@ -960,7 +1062,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"991e0088-54ae-498f-8e95-83f830a4fbc3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","type":"not_found"}' headers: Content-Length: - "123" @@ -969,9 +1071,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:49 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,7 +1081,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 315f6a79-b321-4da8-bc48-246f2cddcdb5 + - cbe7c0d4-4121-4221-be02-903250639257 status: 404 Not Found code: 404 - duration: 30.187625ms + duration: 36.442583ms diff --git a/internal/services/ipam/testdata/data-source-ipamiprdb.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamiprdb.cassette.yaml index df123095cb..40c24bf8f4 100644 --- a/internal/services/ipam/testdata/data-source-ipamiprdb.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamiprdb.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 150379 + content_length: 146415 uncompressed: false body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per session for computation of normalized statement digests","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes used to store SQL statements","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_sql_text_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_insert_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Specifies the number of inserted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1147483647,"int_min":-1,"name":"autovacuum_vacuum_insert_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"50","description":"Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":50,"name":"autovacuum_vacuum_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"Specifies the timezone in which the pg_cron background worker should run.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"cron.timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Causes checkpoints and restartpoints to be logged in the server log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_checkpoints","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"on","description":"Logs long lock waits","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_lock_waits","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"5000","description":"Sets the minimum execution time above which all statements will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_min_duration_statement","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Logs each replication command","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"log_replication_commands","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Log the use of temporary files larger than this number of kilobytes","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_temp_files","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"5000","description":"Specifies the maximum number of statements tracked by the module.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":15000,"int_min":100,"name":"pg_stat_statements.max","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"top","description":"Controls which statements are counted by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track","property_type":"STRING","string_constraint":"^(top|all|none)$","unit":null},{"default_value":"on","description":"Controls whether utility commands are tracked by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track_utility","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2028-11-09T00:00:00Z","name":"PostgreSQL-16","version":"16"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' headers: Content-Length: - - "150379" + - "146415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Mon, 30 Jun 2025 15:02:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f662d56b-13b8-4f9c-92b6-4c4151a480ac + - b1f88143-4325-4fbb-9255-ca66423ee341 status: 200 OK code: 200 - duration: 236.868417ms + duration: 628.282708ms - id: 1 request: proto: HTTP/1.1 @@ -67,7 +67,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 419 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.735993Z","custom_routes_propagation_enabled":false,"id":"6642880c-12e7-4819-aa7d-18adb645a9db","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-10T15:30:29.735993Z"}' + body: '{"created_at":"2025-06-30T15:02:07.459748Z","custom_routes_propagation_enabled":false,"id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-30T15:02:07.459748Z"}' headers: Content-Length: - - "430" + - "419" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,48 +97,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98ba31d8-71c4-4bfb-8702-9d9a3964061f + - 6ec4318a-c034-4c30-8b9c-c55fb449f354 status: 200 OK code: 200 - duration: 74.527042ms + duration: 67.353958ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6642880c-12e7-4819-aa7d-18adb645a9db - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/758a0f38-3fdb-4ab4-97c0-f9dcc156227a/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 418 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.735993Z","custom_routes_propagation_enabled":false,"id":"6642880c-12e7-4819-aa7d-18adb645a9db","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-10T15:30:29.735993Z"}' + body: '{"created_at":"2025-06-30T15:02:07.459748Z","custom_routes_propagation_enabled":true,"id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-30T15:02:07.525753Z"}' headers: Content-Length: - - "430" + - "418" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:29 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,50 +148,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ecffc68-5516-4036-b489-615bd01b5175 + - 88a60e49-9fb3-420d-a1cb-1cbb792bd9f5 status: 200 OK code: 200 - duration: 28.175125ms + duration: 69.373083ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 180 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-rdb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.0.0/22"],"vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/758a0f38-3fdb-4ab4-97c0-f9dcc156227a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 418 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.836436Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"98f58534-e9b7-4ace-952e-53393e668c2b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:29.836436Z","id":"988339b3-ade6-4727-ba1c-b5abc2ed8511","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"},{"created_at":"2025-06-10T15:30:29.836436Z","id":"36fd852a-ceae-4e2a-ab4f-65d25aff764a","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:72e6::/64","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}],"tags":[],"updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}' + body: '{"created_at":"2025-06-30T15:02:07.459748Z","custom_routes_propagation_enabled":true,"id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-30T15:02:07.525753Z"}' headers: Content-Length: - - "1100" + - "418" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,48 +197,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2df17906-b68e-4b96-b21d-065238254e07 + - f826edc4-e00f-4604-824c-0c4e7f3735f2 status: 200 OK code: 200 - duration: 642.693083ms + duration: 29.193541ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 222 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-rdb","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.0.0/22"],"vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/98f58534-e9b7-4ace-952e-53393e668c2b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1076 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.836436Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"98f58534-e9b7-4ace-952e-53393e668c2b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:29.836436Z","id":"988339b3-ade6-4727-ba1c-b5abc2ed8511","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"},{"created_at":"2025-06-10T15:30:29.836436Z","id":"36fd852a-ceae-4e2a-ab4f-65d25aff764a","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:72e6::/64","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}],"tags":[],"updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}' + body: '{"created_at":"2025-06-30T15:02:07.612652Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.612652Z","id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"},{"created_at":"2025-06-30T15:02:07.612652Z","id":"1e683233-bf03-4f4d-a8f0-2b8996ae8ba4","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3feb::/64","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}],"tags":[],"updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}' headers: Content-Length: - - "1100" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:30 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,30 +248,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f05aa3e0-34af-4ae6-999d-63a7db83a776 + - 6b71eebb-fddb-4ecf-bb8d-9388dbaf6a31 status: 200 OK code: 200 - duration: 30.746583ms + duration: 617.925708ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 553 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-ipam-ip-rdb","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2f4331d2-4339-455f-9df6-2559ca19ae9b + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -278,7 +278,7 @@ interactions: trailer: {} content_length: 1076 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:02:07.612652Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.612652Z","id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"},{"created_at":"2025-06-30T15:02:07.612652Z","id":"1e683233-bf03-4f4d-a8f0-2b8996ae8ba4","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3feb::/64","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}],"tags":[],"updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}' headers: Content-Length: - "1076" @@ -287,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,48 +297,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c8e0ffb-2db7-490c-96ed-43da09c30c1e + - 83656ae2-1c72-4824-84b5-65eb1de8c8b6 status: 200 OK code: 200 - duration: 1.296098125s + duration: 29.52225ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 553 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-ipam-ip-rdb","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:30:31 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df7fe763-3de4-4c2f-b222-d3821167eb17 + - 2cf873ae-011e-4017-8a89-91c73af22935 status: 200 OK code: 200 - duration: 137.83575ms + duration: 4.259255459s - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:02 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b84dab74-97b9-46c6-991c-0d657cc01790 + - 182d62fe-a443-4d76-93a1-a7b3ad3fc703 status: 200 OK code: 200 - duration: 128.049166ms + duration: 145.175708ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:31:32 GMT + - Mon, 30 Jun 2025 15:02:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 465d7d10-3a30-417a-bad5-ac95b6a3226e + - f037579f-fd29-46b9-9e73-a7487e1ee042 status: 200 OK code: 200 - duration: 161.127291ms + duration: 126.368958ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -472,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:02 GMT + - Mon, 30 Jun 2025 15:03:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06b3557b-2c1c-437b-a6ec-a225d0b2b145 + - df23ecdb-031a-46c2-adc6-50543b40dca4 status: 200 OK code: 200 - duration: 117.192458ms + duration: 157.402708ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -521,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:32:32 GMT + - Mon, 30 Jun 2025 15:03:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6b03eb9-55ce-4fd7-a7a0-e01b1f9afa54 + - a16d9e68-e953-4096-9d73-4dca70e1713b status: 200 OK code: 200 - duration: 146.134583ms + duration: 270.543291ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -570,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1076 + content_length: 1038 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1076" + - "1038" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:04:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c51c13f-59ed-4674-b893-6f2decc0ce28 + - f488c992-3126-463e-a3e7-6fddb77dcce8 status: 200 OK code: 200 - duration: 142.361417ms + duration: 118.586083ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -619,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1344 + content_length: 1295 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1344" + - "1295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:32 GMT + - Mon, 30 Jun 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6c3d55b9-b102-42f9-ab35-a2546ba96786 + - 7520b04e-9b0b-40f4-aff8-a0bf8d553a45 status: 200 OK code: 200 - duration: 147.690625ms + duration: 198.230459ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b/certificate method: GET response: proto: HTTP/2.0 @@ -668,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1719 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVVnZTa1FPZ0xLMWppVmI4Z1dOMEVwcGhSSFMwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5qRXdNVFV6TVRVNFdoY05NelV3TmpBNE1UVXpNVFU0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMTm10YkpVRGU1T1NBNDRiVmFOOEs4SHhsNW9ENGlVTW9HSjZaZ3pIMktnMG8zQms2TUFxdUR5TFlJaFQrcTUKV3YwN1NNckR1NXJWMHMwSlhITWZuK2JSRGhtZ2lTWDUzVkVxSWJ2WnRPRjFsRG14eHZOdTdZMEtTeU9GZGhMagp3b1U4Nlp0WXhKeTVMNlZDR0lIWk91TlNaejVWWCtDTXZ5K0k5eUduejg4dHhrbGlUN2YvM0syZW5XTE4xMWhuCjg5OUxkMUdJTWN5a1ptRnlDWmQ2ak9BZ3VXOUR6Z3lkakpBVm1XNW5TLzNaZU5UdkFqQjdWYWNIMXg0NzFNaTkKanM3TnowcjZWQ0tMNmRtWUlQVkZZTTdLbHd5U1hLdjRYSHhSamcvL28vUkV2ZnFlREZ1RnpOM0pKV1p2UXdaQQpkYmNvSHRpY3kySFhuLy9McnBKS21EY0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdy9nVG9jRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBSUNOTFVoOWZ1SzZpOXlTaVl6cVgKRG5WTm1Xb3Z3L1kxRDBXdnhFb2c5M1NTdDFkekZuWnJ1aXFYOWprNmNLRzN6c0FQbmRFb1BPQzNOUGFwRmh2Nwo5TFoveXhmMVA3TlFweit2SkkwZ3NuU2xsMXprRjQyTnBuT2QxTGp4ZmdlVW9zMk02ZGxuMmFBMzVZcjR2VWNxCmlvR3QrcjZ1REg3ejJSWEdQb1JURjZsR3Y5TVJwVG9jL1FITFl3M1BLYnVIOU9DMmtYQ1cwZEdkdmdSMXYrQXoKS2pkeisxZEhBQU91Y0hxekdHNW9IN2ZaWGJ6dDVpR0hibEVjWk9MQ2hYQm5sWmF0WnVRUzQ2T2lnd2xFbXRUTQpNcGlseXhrSURrZnZoTW9yenkxOXlDcFFsdFNzYy9ZVFgyaXFtWktGWThpY3JZQURrK1NUUWM5TFZ3U3NwVWRsCkNnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVUUFjdy9tNW1aSk5QQ3J1WTVpRVFuNlR3ekNVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5qTXdNVFV3TXpFd1doY05NelV3TmpJNE1UVXdNekV3V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFLdjRMd05TR3c2bjljOFNja3hsMWJObTVNMGg1amxSYlFERXlZMVIzcGpwZjgvSTN0VS9ERGlCbEw1RFdmTDAKK1NHVkoxenNOVEFrSkZxbktiV3g0NHBDWlZyTElmU1k0c2k5eFJ4UCtyWXZZeHFWcFdxa1YvVE5DUTdhc3NybwpJMkpJOGlzc1dNdFQxc1cwM20xSmsvaDVKVEt4cVk0bnpiaFByWUdhZ2Q3TDE1TGw0aDd2b2dhQXVRSUhVblFlClZIOEF6ck1BK1NIbWwyUzV2SVowTVpMaUx5dHpYckZKekdWTFZaRC93WXhQT2laak9hd24zQXprVVc1SjQra3gKWUh4K3JSTTQ3Tll3ZzFUdVFoc2ExVGg3WDdOcWs2WWdYTURWUnhSeEM2NHVON1FHVWtLS3kwVGc4Skw3MVRFSwpvWlZYZzVXQ3g5ejIvYmV2MFNBQndwOENBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0UxQy82bm9jRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBbGZDNmY1dWxVdTh4OEhncUJOcHoKVTViYm1xUzVTdTJ2RUFVUlR0dmE3UGFCWEY1TkZaVzFvUzdpMVoyVUJLRCtvYnBWcHI3YUw2akQzT0R3a0hseQpZa1ZBc0k4TmRjeU0wNmhzb0pPaFVvQkdTVzJiR0tIZDB3bVpTbG5MeWdFMnkvMHMwT3NWK1JHUTc5SFpzM3JlCjNlbUhybVJTT25LZ1pNU2ZQNVlrdlBLbTk3R1FCaGRZcUpQUUhhNWRpZ0VEVzlrTUtld2J3U1dJVEtHMGh4RVQKTit5Z0Nacitadk82ZHBOai8zQmRwNksvWDNBdmRucWpEL2svSi8zWkRvaUJ4Wi9UcGUzbEViSE9YTExNdGpPTQpOdHAzWnM5U2phOE5JZEVJM1RCbVJZWUlsVTFzdmZ2RWZaZVlaK05ZSlRveHM2WlV3MEh0UjF1TE11OEl6dGNaCnRBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1721" + - "1719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:32 GMT + - Mon, 30 Jun 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e6fb3966-3c4b-4a5b-bece-4248c2eb6fda + - bd4e20d6-7e33-427e-8cac-453d8749ee2f status: 200 OK code: 200 - duration: 114.543458ms + duration: 109.114416ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=98f58534-e9b7-4ace-952e-53393e668c2b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2f4331d2-4339-455f-9df6-2559ca19ae9b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=6d647a07-fcc7-4bfd-9605-49657339623b&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -717,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:32 GMT + - Mon, 30 Jun 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9478230-c437-4074-8678-28832f1a2075 + - a85636c1-9b9d-411b-9431-8b4f053a9c93 status: 200 OK code: 200 - duration: 51.817833ms + duration: 52.428875ms - id: 15 request: proto: HTTP/1.1 @@ -757,7 +759,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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-ipam-ip-rdb&resource_type=rdb_instance method: GET response: @@ -766,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a642317b-4ed1-4c52-b61e-1b104e79546a + - ad207ebd-307e-49de-85ec-49112ef4532c status: 200 OK code: 200 - duration: 52.539208ms + duration: 56.399291ms - id: 16 request: proto: HTTP/1.1 @@ -806,7 +808,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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-ipam-ip-rdb&resource_type=rdb_instance method: GET response: @@ -815,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 69e13cd5-870e-41e3-ad67-a769cd369b6e + - fcbf8289-433d-4025-ae29-d5a02ad58b97 status: 200 OK code: 200 - duration: 50.751125ms + duration: 47.020167ms - id: 17 request: proto: HTTP/1.1 @@ -855,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6642880c-12e7-4819-aa7d-18adb645a9db + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/758a0f38-3fdb-4ab4-97c0-f9dcc156227a method: GET response: proto: HTTP/2.0 @@ -864,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 418 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.735993Z","custom_routes_propagation_enabled":false,"id":"6642880c-12e7-4819-aa7d-18adb645a9db","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-10T15:30:29.735993Z"}' + body: '{"created_at":"2025-06-30T15:02:07.459748Z","custom_routes_propagation_enabled":true,"id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a","is_default":false,"name":"tf-tests-ipam-ip-datasource-rdb","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-06-30T15:02:07.525753Z"}' headers: Content-Length: - - "430" + - "418" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -885,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41ef5bc0-81dc-4d9f-b4b4-9800b073630b + - 2c5e440c-2a38-465e-83cb-189d9b804bd8 status: 200 OK code: 200 - duration: 30.230667ms + duration: 32.628416ms - id: 18 request: proto: HTTP/1.1 @@ -904,8 +906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/98f58534-e9b7-4ace-952e-53393e668c2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2f4331d2-4339-455f-9df6-2559ca19ae9b method: GET response: proto: HTTP/2.0 @@ -913,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1100 + content_length: 1076 uncompressed: false - body: '{"created_at":"2025-06-10T15:30:29.836436Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"98f58534-e9b7-4ace-952e-53393e668c2b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:30:29.836436Z","id":"988339b3-ade6-4727-ba1c-b5abc2ed8511","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"},{"created_at":"2025-06-10T15:30:29.836436Z","id":"36fd852a-ceae-4e2a-ab4f-65d25aff764a","private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:72e6::/64","updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}],"tags":[],"updated_at":"2025-06-10T15:30:29.836436Z","vpc_id":"6642880c-12e7-4819-aa7d-18adb645a9db"}' + body: '{"created_at":"2025-06-30T15:02:07.612652Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","name":"tf-tests-ipam-ip-datasource-rdb","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.612652Z","id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.0.0/22","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"},{"created_at":"2025-06-30T15:02:07.612652Z","id":"1e683233-bf03-4f4d-a8f0-2b8996ae8ba4","private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3feb::/64","updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}],"tags":[],"updated_at":"2025-06-30T15:02:07.612652Z","vpc_id":"758a0f38-3fdb-4ab4-97c0-f9dcc156227a"}' headers: Content-Length: - - "1100" + - "1076" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93c684da-e072-499b-bb35-fafad1b65111 + - f64dca04-c570-445c-ac0e-4ce38209f872 status: 200 OK code: 200 - duration: 27.182625ms + duration: 33.461583ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -962,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1344 + content_length: 1295 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1344" + - "1295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dbd1fc2-6f4c-4110-b72c-7bdf455de86c + - 5bdd1330-164b-4922-bf58-dbefc45e1398 status: 200 OK code: 200 - duration: 140.126459ms + duration: 105.830708ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b/certificate method: GET response: proto: HTTP/2.0 @@ -1011,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1719 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVVnZTa1FPZ0xLMWppVmI4Z1dOMEVwcGhSSFMwd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5qRXdNVFV6TVRVNFdoY05NelV3TmpBNE1UVXpNVFU0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMTm10YkpVRGU1T1NBNDRiVmFOOEs4SHhsNW9ENGlVTW9HSjZaZ3pIMktnMG8zQms2TUFxdUR5TFlJaFQrcTUKV3YwN1NNckR1NXJWMHMwSlhITWZuK2JSRGhtZ2lTWDUzVkVxSWJ2WnRPRjFsRG14eHZOdTdZMEtTeU9GZGhMagp3b1U4Nlp0WXhKeTVMNlZDR0lIWk91TlNaejVWWCtDTXZ5K0k5eUduejg4dHhrbGlUN2YvM0syZW5XTE4xMWhuCjg5OUxkMUdJTWN5a1ptRnlDWmQ2ak9BZ3VXOUR6Z3lkakpBVm1XNW5TLzNaZU5UdkFqQjdWYWNIMXg0NzFNaTkKanM3TnowcjZWQ0tMNmRtWUlQVkZZTTdLbHd5U1hLdjRYSHhSamcvL28vUkV2ZnFlREZ1RnpOM0pKV1p2UXdaQQpkYmNvSHRpY3kySFhuLy9McnBKS21EY0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdy9nVG9jRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBSUNOTFVoOWZ1SzZpOXlTaVl6cVgKRG5WTm1Xb3Z3L1kxRDBXdnhFb2c5M1NTdDFkekZuWnJ1aXFYOWprNmNLRzN6c0FQbmRFb1BPQzNOUGFwRmh2Nwo5TFoveXhmMVA3TlFweit2SkkwZ3NuU2xsMXprRjQyTnBuT2QxTGp4ZmdlVW9zMk02ZGxuMmFBMzVZcjR2VWNxCmlvR3QrcjZ1REg3ejJSWEdQb1JURjZsR3Y5TVJwVG9jL1FITFl3M1BLYnVIOU9DMmtYQ1cwZEdkdmdSMXYrQXoKS2pkeisxZEhBQU91Y0hxekdHNW9IN2ZaWGJ6dDVpR0hibEVjWk9MQ2hYQm5sWmF0WnVRUzQ2T2lnd2xFbXRUTQpNcGlseXhrSURrZnZoTW9yenkxOXlDcFFsdFNzYy9ZVFgyaXFtWktGWThpY3JZQURrK1NUUWM5TFZ3U3NwVWRsCkNnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVUUFjdy9tNW1aSk5QQ3J1WTVpRVFuNlR3ekNVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5qTXdNVFV3TXpFd1doY05NelV3TmpJNE1UVXdNekV3V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFLdjRMd05TR3c2bjljOFNja3hsMWJObTVNMGg1amxSYlFERXlZMVIzcGpwZjgvSTN0VS9ERGlCbEw1RFdmTDAKK1NHVkoxenNOVEFrSkZxbktiV3g0NHBDWlZyTElmU1k0c2k5eFJ4UCtyWXZZeHFWcFdxa1YvVE5DUTdhc3NybwpJMkpJOGlzc1dNdFQxc1cwM20xSmsvaDVKVEt4cVk0bnpiaFByWUdhZ2Q3TDE1TGw0aDd2b2dhQXVRSUhVblFlClZIOEF6ck1BK1NIbWwyUzV2SVowTVpMaUx5dHpYckZKekdWTFZaRC93WXhQT2laak9hd24zQXprVVc1SjQra3gKWUh4K3JSTTQ3Tll3ZzFUdVFoc2ExVGg3WDdOcWs2WWdYTURWUnhSeEM2NHVON1FHVWtLS3kwVGc4Skw3MVRFSwpvWlZYZzVXQ3g5ejIvYmV2MFNBQndwOENBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0UxQy82bm9jRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBbGZDNmY1dWxVdTh4OEhncUJOcHoKVTViYm1xUzVTdTJ2RUFVUlR0dmE3UGFCWEY1TkZaVzFvUzdpMVoyVUJLRCtvYnBWcHI3YUw2akQzT0R3a0hseQpZa1ZBc0k4TmRjeU0wNmhzb0pPaFVvQkdTVzJiR0tIZDB3bVpTbG5MeWdFMnkvMHMwT3NWK1JHUTc5SFpzM3JlCjNlbUhybVJTT25LZ1pNU2ZQNVlrdlBLbTk3R1FCaGRZcUpQUUhhNWRpZ0VEVzlrTUtld2J3U1dJVEtHMGh4RVQKTit5Z0Nacitadk82ZHBOai8zQmRwNksvWDNBdmRucWpEL2svSi8zWkRvaUJ4Wi9UcGUzbEViSE9YTExNdGpPTQpOdHAzWnM5U2phOE5JZEVJM1RCbVJZWUlsVTFzdmZ2RWZaZVlaK05ZSlRveHM2WlV3MEh0UjF1TE11OEl6dGNaCnRBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1721" + - "1719" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72aabc4b-5cc3-4ce6-8160-066ee8b0075a + - 85cbc63d-8950-4c56-bb57-da1f1bea0d6e status: 200 OK code: 200 - duration: 88.656667ms + duration: 107.656084ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=98f58534-e9b7-4ace-952e-53393e668c2b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2f4331d2-4339-455f-9df6-2559ca19ae9b&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=6d647a07-fcc7-4bfd-9605-49657339623b&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -1060,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a1a4374-beb4-45b9-8131-18570d615c0f + - fa350438-b7f1-4b4b-8116-e1fc4c978aa7 status: 200 OK code: 200 - duration: 50.184458ms + duration: 50.579167ms - id: 22 request: proto: HTTP/1.1 @@ -1100,7 +1102,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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-ipam-ip-rdb&resource_type=rdb_instance method: GET response: @@ -1109,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1130,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c833a3d-fee2-493b-9e86-a9ab9654dc5e + - bdba652e-db81-44df-b77b-96e4e57339ea status: 200 OK code: 200 - duration: 51.308542ms + duration: 64.452375ms - id: 23 request: proto: HTTP/1.1 @@ -1149,7 +1151,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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-ipam-ip-rdb&resource_type=rdb_instance method: GET response: @@ -1158,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 542 + content_length: 526 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-10T15:30:31.369270Z","id":"9ef53ecf-6e85-413b-9610-2039f03c40f2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","mac_address":"02:00:00:1D:D9:BA","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"988339b3-ade6-4727-ba1c-b5abc2ed8511"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-10T15:31:00.570868Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-06-30T15:02:10.961231Z","id":"b6827c40-43ab-4c75-b4cb-b07cf7e9fcbb","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"6d647a07-fcc7-4bfd-9605-49657339623b","mac_address":"02:00:00:1F:99:A5","name":"test-ipam-ip-rdb","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"8a9ae719-9b51-4db1-9c74-5a60cbe74e46"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:02:42.334134Z","zone":null}],"total_count":1}' headers: Content-Length: - - "542" + - "526" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84cb91c2-5688-45db-b141-12ca4cf5711b + - 61491aa0-fb25-4d36-8039-21b5bae5e774 status: 200 OK code: 200 - duration: 46.154583ms + duration: 53.321ms - id: 24 request: proto: HTTP/1.1 @@ -1198,8 +1200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -1207,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1344 + content_length: 1295 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1344" + - "1295" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:34 GMT + - Mon, 30 Jun 2025 15:04:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79811432-6d3a-496f-b8db-8f0d9ccb50c7 + - 43c75667-88bc-4552-8d91-c14b14b2408e status: 200 OK code: 200 - duration: 116.922834ms + duration: 161.854166ms - id: 25 request: proto: HTTP/1.1 @@ -1247,8 +1249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: DELETE response: proto: HTTP/2.0 @@ -1256,20 +1258,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1347 + content_length: 1298 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1347" + - "1298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:34 GMT + - Mon, 30 Jun 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e544c66-63bf-40a2-bf68-528fb0779ac3 + - 3865e970-53cd-48cb-8e37-7f6b6aa3a41e status: 200 OK code: 200 - duration: 253.8785ms + duration: 360.275625ms - id: 26 request: proto: HTTP/1.1 @@ -1296,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -1305,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1347 + content_length: 1298 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-10T15:30:30.832460Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"45e2802b-3c9c-4de7-a5cd-86d4c2996418","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"98f58534-e9b7-4ace-952e-53393e668c2b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:02:08.547618Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d14fe907-d856-4c78-aaaa-ba6350b393a7","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"2f4331d2-4339-455f-9df6-2559ca19ae9b","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"6d647a07-fcc7-4bfd-9605-49657339623b","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-ipam-ip-rdb","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1347" + - "1298" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:33:34 GMT + - Mon, 30 Jun 2025 15:04:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff487d89-feaf-4740-80f1-c79d580f6e1a + - 7c4d3ff2-4371-483a-a623-2546d2e9be4e status: 200 OK code: 200 - duration: 124.981167ms + duration: 103.651209ms - id: 27 request: proto: HTTP/1.1 @@ -1345,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -1356,7 +1358,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6d647a07-fcc7-4bfd-9605-49657339623b","type":"not_found"}' headers: Content-Length: - "129" @@ -1365,9 +1367,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:34:04 GMT + - Mon, 30 Jun 2025 15:05:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1375,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0591c956-1987-4986-bdba-b30b4b74975d + - ba8a502d-7300-4171-a043-58ac8f1e2595 status: 404 Not Found code: 404 - duration: 79.060541ms + duration: 81.596833ms - id: 28 request: proto: HTTP/1.1 @@ -1394,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/98f58534-e9b7-4ace-952e-53393e668c2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2f4331d2-4339-455f-9df6-2559ca19ae9b method: DELETE response: proto: HTTP/2.0 @@ -1412,9 +1414,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:34:05 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1422,10 +1424,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31555e6e-d99e-4d89-b495-86083a17980d + - 0bd2d080-f375-45d9-8db8-6782963c8301 status: 204 No Content code: 204 - duration: 1.500146333s + duration: 2.647251917s - id: 29 request: proto: HTTP/1.1 @@ -1441,8 +1443,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6642880c-12e7-4819-aa7d-18adb645a9db + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/758a0f38-3fdb-4ab4-97c0-f9dcc156227a method: DELETE response: proto: HTTP/2.0 @@ -1459,9 +1461,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:34:06 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1469,10 +1471,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05357c53-c7d9-416f-9595-7941b40d0735 + - a26628f2-1a6a-4b91-ba81-ff8b6f58c433 status: 204 No Content code: 204 - duration: 161.268ms + duration: 132.370459ms - id: 30 request: proto: HTTP/1.1 @@ -1488,8 +1490,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/6d647a07-fcc7-4bfd-9605-49657339623b method: GET response: proto: HTTP/2.0 @@ -1499,7 +1501,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"6bdd3f3a-cf8e-4bd1-bcde-1e3fe3537e97","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"6d647a07-fcc7-4bfd-9605-49657339623b","type":"not_found"}' headers: Content-Length: - "129" @@ -1508,9 +1510,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:34:06 GMT + - Mon, 30 Jun 2025 15:05:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1518,7 +1520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b2b0a78-b680-4337-8e77-ec2430d4f77b + - f5a35a91-cca3-43ff-9cad-4967981568a0 status: 404 Not Found code: 404 - duration: 149.295333ms + duration: 72.897083ms diff --git a/internal/services/ipam/testdata/ipamip-basic.cassette.yaml b/internal/services/ipam/testdata/ipamip-basic.cassette.yaml index 4ea8b3a348..3e2e0c4516 100644 --- a/internal/services/ipam/testdata/ipamip-basic.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.282204Z","custom_routes_propagation_enabled":false,"id":"8ac8966f-8992-4e21-b75e-02a7c844bb20","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-06-10T15:28:03.282204Z"}' + body: '{"created_at":"2025-06-30T15:02:07.533189Z","custom_routes_propagation_enabled":false,"id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65","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-06-30T15:02:07.533189Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ccc4790-11d6-45db-8c71-087fc4c1315e + - b1a5f8c5-8928-422e-8e5d-be77c2152e29 status: 200 OK code: 200 - duration: 264.241833ms + duration: 148.016541ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e4e22609-5cd5-47a5-a7cf-85e05de80f65/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:07.533189Z","custom_routes_propagation_enabled":true,"id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65","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-06-30T15:02:07.582019Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ba4e6fa-2318-430f-ae6d-46116e130dfd + status: 200 OK + code: 200 + duration: 40.760292ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8ac8966f-8992-4e21-b75e-02a7c844bb20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e4e22609-5cd5-47a5-a7cf-85e05de80f65 method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.282204Z","custom_routes_propagation_enabled":false,"id":"8ac8966f-8992-4e21-b75e-02a7c844bb20","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-06-10T15:28:03.282204Z"}' + body: '{"created_at":"2025-06-30T15:02:07.533189Z","custom_routes_propagation_enabled":true,"id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65","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-06-30T15:02:07.582019Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b61e6f1f-6c0c-4385-88b4-7e7e38a92273 + - 5d238b33-df84-4d18-b6ae-a027fb35279b status: 200 OK code: 200 - duration: 53.713208ms - - id: 2 + duration: 37.993333ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 218 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-peaceful-lehmann","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"name":"tf-pn-xenodochial-hamilton","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1072 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.508416Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","name":"tf-pn-peaceful-lehmann","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.508416Z","id":"ee5c1748-8a40-499a-b7fa-07e741fbce87","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"},{"created_at":"2025-06-10T15:28:03.508416Z","id":"afa25642-9a13-4bd3-9495-7d2f6d5f84c6","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7930::/64","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}],"tags":[],"updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"created_at":"2025-06-30T15:02:07.703140Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76724308-953a-4386-a146-8da74c570602","name":"tf-pn-xenodochial-hamilton","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.703140Z","id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"},{"created_at":"2025-06-30T15:02:07.703140Z","id":"92884e36-abcf-4091-9980-0898a2cb4f8e","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:df1f::/64","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}],"tags":[],"updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}' headers: Content-Length: - - "1092" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a24dcda-ed4a-4981-b4b5-975224d1ca21 + - bf727d64-9ffb-4bcd-98f0-e43791fc25e3 status: 200 OK code: 200 - duration: 715.981166ms - - id: 3 + duration: 633.991458ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2293156c-f6e7-4d38-9ab9-53f117ae1003 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76724308-953a-4386-a146-8da74c570602 method: GET response: proto: HTTP/2.0 @@ -176,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1072 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.508416Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","name":"tf-pn-peaceful-lehmann","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.508416Z","id":"ee5c1748-8a40-499a-b7fa-07e741fbce87","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"},{"created_at":"2025-06-10T15:28:03.508416Z","id":"afa25642-9a13-4bd3-9495-7d2f6d5f84c6","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7930::/64","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}],"tags":[],"updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"created_at":"2025-06-30T15:02:07.703140Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76724308-953a-4386-a146-8da74c570602","name":"tf-pn-xenodochial-hamilton","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.703140Z","id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"},{"created_at":"2025-06-30T15:02:07.703140Z","id":"92884e36-abcf-4091-9980-0898a2cb4f8e","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:df1f::/64","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}],"tags":[],"updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}' headers: Content-Length: - - "1092" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 520aae20-b080-4eed-b84e-aff709de4db7 + - d83542f1-7284-44e9-941c-2d4404346604 status: 200 OK code: 200 - duration: 53.276041ms - - id: 4 + duration: 29.964291ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -212,13 +263,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003"},"is_ipv6":false,"tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"76724308-953a-4386-a146-8da74c570602"},"is_ipv6":false,"tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -227,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.395777Z","id":"b2820e59-472f-4260-a394-5e50996e17e1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"ee5c1748-8a40-499a-b7fa-07e741fbce87"},"tags":[],"updated_at":"2025-06-10T15:28:04.395777Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950563Z","id":"7d5c754f-226d-40d1-bf81-d6bc67013da1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c"},"tags":[],"updated_at":"2025-06-30T15:02:10.950563Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5b4efc1-9207-4184-b80e-5b7aae63d50a + - 1689aacd-ed61-45ab-a6b4-b9c2da2a905a status: 200 OK code: 200 - duration: 336.997125ms - - id: 5 + duration: 3.922825542s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -267,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b2820e59-472f-4260-a394-5e50996e17e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7d5c754f-226d-40d1-bf81-d6bc67013da1 method: GET response: proto: HTTP/2.0 @@ -276,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.395777Z","id":"b2820e59-472f-4260-a394-5e50996e17e1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"ee5c1748-8a40-499a-b7fa-07e741fbce87"},"tags":[],"updated_at":"2025-06-10T15:28:04.395777Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950563Z","id":"7d5c754f-226d-40d1-bf81-d6bc67013da1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c"},"tags":[],"updated_at":"2025-06-30T15:02:10.950563Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,11 +348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46f1d674-f0a3-41d1-80de-33ecb61ae69a + - 7a3109dc-f142-4a45-8ed6-15617a8fcf76 status: 200 OK code: 200 - duration: 33.086833ms - - id: 6 + duration: 30.469083ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -316,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2293156c-f6e7-4d38-9ab9-53f117ae1003 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76724308-953a-4386-a146-8da74c570602 method: GET response: proto: HTTP/2.0 @@ -325,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1072 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.508416Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","name":"tf-pn-peaceful-lehmann","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.508416Z","id":"ee5c1748-8a40-499a-b7fa-07e741fbce87","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"},{"created_at":"2025-06-10T15:28:03.508416Z","id":"afa25642-9a13-4bd3-9495-7d2f6d5f84c6","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7930::/64","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}],"tags":[],"updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"created_at":"2025-06-30T15:02:07.703140Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76724308-953a-4386-a146-8da74c570602","name":"tf-pn-xenodochial-hamilton","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.703140Z","id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"},{"created_at":"2025-06-30T15:02:07.703140Z","id":"92884e36-abcf-4091-9980-0898a2cb4f8e","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:df1f::/64","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}],"tags":[],"updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}' headers: Content-Length: - - "1092" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9eddc22-69f7-42ad-ab84-3ea873cad284 + - 0373fdaa-f271-42fc-a6e9-0557f3f5fee5 status: 200 OK code: 200 - duration: 47.598541ms - - id: 7 + duration: 32.078416ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -365,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b2820e59-472f-4260-a394-5e50996e17e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7d5c754f-226d-40d1-bf81-d6bc67013da1 method: GET response: proto: HTTP/2.0 @@ -374,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.395777Z","id":"b2820e59-472f-4260-a394-5e50996e17e1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"ee5c1748-8a40-499a-b7fa-07e741fbce87"},"tags":[],"updated_at":"2025-06-10T15:28:04.395777Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950563Z","id":"7d5c754f-226d-40d1-bf81-d6bc67013da1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c"},"tags":[],"updated_at":"2025-06-30T15:02:10.950563Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,11 +446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36472b07-561f-483e-8ca1-83ac4c2ca171 + - df69f64b-858d-4aa4-b245-9bc37c536383 status: 200 OK code: 200 - duration: 33.283084ms - - id: 8 + duration: 32.837292ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -414,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8ac8966f-8992-4e21-b75e-02a7c844bb20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e4e22609-5cd5-47a5-a7cf-85e05de80f65 method: GET response: proto: HTTP/2.0 @@ -423,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.282204Z","custom_routes_propagation_enabled":false,"id":"8ac8966f-8992-4e21-b75e-02a7c844bb20","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-06-10T15:28:03.282204Z"}' + body: '{"created_at":"2025-06-30T15:02:07.533189Z","custom_routes_propagation_enabled":true,"id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65","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-06-30T15:02:07.582019Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,11 +495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fac6a738-f48c-4dee-bb0d-b721c05c874e + - dbe2ffc6-f64e-40a2-bfec-1df6b45332e6 status: 200 OK code: 200 - duration: 50.666083ms - - id: 9 + duration: 29.393833ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -463,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2293156c-f6e7-4d38-9ab9-53f117ae1003 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76724308-953a-4386-a146-8da74c570602 method: GET response: proto: HTTP/2.0 @@ -472,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1072 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.508416Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","name":"tf-pn-peaceful-lehmann","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.508416Z","id":"ee5c1748-8a40-499a-b7fa-07e741fbce87","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"},{"created_at":"2025-06-10T15:28:03.508416Z","id":"afa25642-9a13-4bd3-9495-7d2f6d5f84c6","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7930::/64","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}],"tags":[],"updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"created_at":"2025-06-30T15:02:07.703140Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76724308-953a-4386-a146-8da74c570602","name":"tf-pn-xenodochial-hamilton","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.703140Z","id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"},{"created_at":"2025-06-30T15:02:07.703140Z","id":"92884e36-abcf-4091-9980-0898a2cb4f8e","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:df1f::/64","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}],"tags":[],"updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}' headers: Content-Length: - - "1092" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 171342d2-50ad-48fe-b638-3ff5c1875b2d + - 64f38dc7-b849-40b4-9456-8316bfc6ba7f status: 200 OK code: 200 - duration: 25.912083ms - - id: 10 + duration: 24.3405ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -512,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b2820e59-472f-4260-a394-5e50996e17e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7d5c754f-226d-40d1-bf81-d6bc67013da1 method: GET response: proto: HTTP/2.0 @@ -521,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.395777Z","id":"b2820e59-472f-4260-a394-5e50996e17e1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"ee5c1748-8a40-499a-b7fa-07e741fbce87"},"tags":[],"updated_at":"2025-06-10T15:28:04.395777Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950563Z","id":"7d5c754f-226d-40d1-bf81-d6bc67013da1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c"},"tags":[],"updated_at":"2025-06-30T15:02:10.950563Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93bd525e-75bb-49d1-a4e5-e3d1778850b8 + - 14b1b178-b2a8-469f-b0f9-904a3319aaee status: 200 OK code: 200 - duration: 43.025917ms - - id: 11 + duration: 26.834917ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -561,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2293156c-f6e7-4d38-9ab9-53f117ae1003 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76724308-953a-4386-a146-8da74c570602 method: GET response: proto: HTTP/2.0 @@ -570,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1072 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.508416Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","name":"tf-pn-peaceful-lehmann","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.508416Z","id":"ee5c1748-8a40-499a-b7fa-07e741fbce87","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"},{"created_at":"2025-06-10T15:28:03.508416Z","id":"afa25642-9a13-4bd3-9495-7d2f6d5f84c6","private_network_id":"2293156c-f6e7-4d38-9ab9-53f117ae1003","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7930::/64","updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}],"tags":[],"updated_at":"2025-06-10T15:28:03.508416Z","vpc_id":"8ac8966f-8992-4e21-b75e-02a7c844bb20"}' + body: '{"created_at":"2025-06-30T15:02:07.703140Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76724308-953a-4386-a146-8da74c570602","name":"tf-pn-xenodochial-hamilton","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.703140Z","id":"86195cda-7e40-40f1-b7e0-b7296f5dfc2c","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"},{"created_at":"2025-06-30T15:02:07.703140Z","id":"92884e36-abcf-4091-9980-0898a2cb4f8e","private_network_id":"76724308-953a-4386-a146-8da74c570602","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:df1f::/64","updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}],"tags":[],"updated_at":"2025-06-30T15:02:07.703140Z","vpc_id":"e4e22609-5cd5-47a5-a7cf-85e05de80f65"}' headers: Content-Length: - - "1092" + - "1072" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebb2bd8a-a582-4a30-ba7b-53608bbbac90 + - db899da6-3e0c-4fd6-91fa-5b89ce0763f6 status: 200 OK code: 200 - duration: 22.275125ms - - id: 12 + duration: 24.85925ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -612,8 +663,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b2820e59-472f-4260-a394-5e50996e17e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7d5c754f-226d-40d1-bf81-d6bc67013da1 method: DELETE response: proto: HTTP/2.0 @@ -630,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da5fd19-90ec-4757-a089-7067384627be + - 5d52f6e8-e4ef-442c-96e9-7c3cc2dd7e29 status: 204 No Content code: 204 - duration: 42.802833ms - - id: 13 + duration: 55.366083ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -659,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2293156c-f6e7-4d38-9ab9-53f117ae1003 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76724308-953a-4386-a146-8da74c570602 method: DELETE response: proto: HTTP/2.0 @@ -677,9 +728,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,11 +738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a227907-21b2-4ac3-a6f5-c1d656ca9b33 + - 40700fc1-f154-41e6-bc3f-c8e2cb636011 status: 204 No Content code: 204 - duration: 1.391433459s - - id: 14 + duration: 5.7175615s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -706,8 +757,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8ac8966f-8992-4e21-b75e-02a7c844bb20 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e4e22609-5cd5-47a5-a7cf-85e05de80f65 method: DELETE response: proto: HTTP/2.0 @@ -724,9 +775,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,11 +785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a243f6c6-f721-4743-a98e-995c0f67fe38 + - 5617a6c2-34bd-43bb-b146-0ac3f327f8a0 status: 204 No Content code: 204 - duration: 90.94475ms - - id: 15 + duration: 85.827125ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -753,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b2820e59-472f-4260-a394-5e50996e17e1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7d5c754f-226d-40d1-bf81-d6bc67013da1 method: GET response: proto: HTTP/2.0 @@ -764,7 +815,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"b2820e59-472f-4260-a394-5e50996e17e1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"7d5c754f-226d-40d1-bf81-d6bc67013da1","type":"not_found"}' headers: Content-Length: - "123" @@ -773,9 +824,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0c3b56-cafb-4491-9163-32f8fd09e83a + - 6f2b74b0-a3b3-4b10-8b85-f523311e8eab status: 404 Not Found code: 404 - duration: 28.419708ms + duration: 25.230291ms diff --git a/internal/services/ipam/testdata/ipamip-with-custom-resource.cassette.yaml b/internal/services/ipam/testdata/ipamip-with-custom-resource.cassette.yaml index 9252a184c1..121c93c643 100644 --- a/internal/services/ipam/testdata/ipamip-with-custom-resource.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-with-custom-resource.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":false,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.515675Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8000c88a-e57c-4071-a527-02744d535a3e + - f3e39d02-5a1f-4c2b-8f0b-1245987b5520 status: 200 OK code: 200 - duration: 303.9885ms + duration: 170.663417ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b22a7b95-84ab-4869-adc7-6f31b86c3b28 + - f0fcac38-6e64-4d2b-ac9c-afe89ae52c9f status: 200 OK code: 200 - duration: 56.332333ms + duration: 45.135083ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 168 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-great-edison","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab48f854-9f33-44c2-a6af-0fb67f9762bc + - 2f7e4f1a-e592-451a-bf26-1a29699a5541 status: 200 OK code: 200 - duration: 588.095209ms + duration: 44.431375ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 211 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-goofy-volhard","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "1088" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2326a096-f947-4056-99e9-6929800700f4 + - 2e74a3a0-9539-41b1-80ce-9328e32c268c status: 200 OK code: 200 - duration: 40.154291ms + duration: 644.610084ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 209 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a"},"is_ipv6":false,"tags":[],"resource":{"mac_address":"bc:24:11:74:d0:5a","name":null}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:04.298506Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,48 +248,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71ca7bb1-02ba-455f-aab3-a03ab02536d3 + - 87f8325e-210f-40e8-ad79-b2cdbd17ce56 status: 200 OK code: 200 - duration: 333.006792ms + duration: 35.790708ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 209 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034"},"is_ipv6":false,"tags":[],"resource":{"mac_address":"bc:24:11:74:d0:5a","name":null}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 461 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:04.298506Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:10.950535Z","zone":null}' headers: Content-Length: - - "475" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e1a73cf-2ee0-4612-9edc-175dc2cb2ffb + - 1c6d27e1-0e22-4d1b-b244-4cd7120014ee status: 200 OK code: 200 - duration: 50.252208ms + duration: 3.923824875s - id: 6 request: proto: HTTP/1.1 @@ -316,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -325,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:10.950535Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac851a71-af22-45de-a81d-22cdfde617c0 + - 323538ca-d9f7-4417-800b-e93cc26aaf34 status: 200 OK code: 200 - duration: 30.118166ms + duration: 31.461958ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:04.298506Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09286bd1-843d-4c91-b3e7-6d688a1d7ed5 + - 1258371d-8a3f-4cdd-8bb8-bdb0b78f6634 status: 200 OK code: 200 - duration: 32.763667ms + duration: 32.603958ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:10.950535Z","zone":null}' headers: Content-Length: - - "405" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d10f8549-848c-46a2-a398-abca498c27fd + - f1414f1d-0b01-4f47-a4e9-42a6f1cb9422 status: 200 OK code: 200 - duration: 60.63475ms + duration: 30.739458ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: GET response: proto: HTTP/2.0 @@ -472,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a33a979-609c-44aa-99e2-fd743565f2d2 + - 2973240d-2f53-487a-8a7d-6ed969f1e7ae status: 200 OK code: 200 - duration: 48.760625ms + duration: 31.283792ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -521,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:04.298506Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a18fe0a-5b40-4b81-bcf5-a326753bdc93 + - 8a78869a-1f08-4995-95b5-37693275c173 status: 200 OK code: 200 - duration: 24.219917ms + duration: 26.280667ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -570,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:10.950535Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ed63468-981b-40cb-b2d6-3f41b8fa488d + - 83343ec3-07ea-4a97-b50a-a9fc8e86643f status: 200 OK code: 200 - duration: 25.195667ms + duration: 34.54725ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -619,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "405" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fdf5efe-b05b-4aa9-9046-982950a0ae42 + - bf6c1f04-8896-4dc1-acf5-4da397632ca3 status: 200 OK code: 200 - duration: 30.202375ms + duration: 29.029041ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: GET response: proto: HTTP/2.0 @@ -668,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ba559a8-fd47-45d1-bdb2-49dadeb37823 + - 4691cba0-f6f9-4eaa-9d1d-54632e440a39 status: 200 OK code: 200 - duration: 25.901792ms + duration: 35.64ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -717,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:04.298506Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09078ebb-85c4-4c79-ae80-9f1fe7d8fbd1 + - 8c6d5d27-8035-4cc7-a33c-a639305058e1 status: 200 OK code: 200 - duration: 30.571542ms + duration: 25.430834ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -766,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5A","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:10.950535Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,50 +789,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54bc1812-a1a1-4a6f-bcce-f564e3777e6a + - 4c930ad1-dc40-4a29-aa0a-139c2df9ea34 status: 200 OK code: 200 - duration: 26.940209ms + duration: 25.133ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 127 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"from_resource":{"mac_address":"bc:24:11:74:d0:5a","name":null},"to_resource":{"mac_address":"bc:24:11:74:d0:5b","name":null}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28/move - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:05.377435Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,48 +838,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 055cabd6-3b88-4c46-8027-4a3674ebfc39 + - f1a2cf95-ed0b-463a-a932-aa59de060472 status: 200 OK code: 200 - duration: 63.357542ms + duration: 28.059333ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 127 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"from_resource":{"mac_address":"bc:24:11:74:d0:5a","name":null},"to_resource":{"mac_address":"bc:24:11:74:d0:5b","name":null}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432/move + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 461 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:05.377435Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:13.232354Z","zone":null}' headers: Content-Length: - - "475" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd08892c-9ad5-47ab-8d8e-9ceb4cd84b6f + - 1f81517a-b5b4-4248-b171-d5259b41ba3f status: 200 OK code: 200 - duration: 27.57ms + duration: 104.365167ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -915,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:13.232354Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0940de87-1356-4160-9cc2-46f8e1b59b0a + - e83e688f-a9b9-4cea-b996-fd765f8c4bec status: 200 OK code: 200 - duration: 23.782042ms + duration: 25.08425ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -964,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:05.377435Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ac90fa0-c79b-429e-ac56-a2803101d10d + - e52f3a11-8bdf-4d28-bb75-795f565afaba status: 200 OK code: 200 - duration: 47.468292ms + duration: 24.649041ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:13.232354Z","zone":null}' headers: Content-Length: - - "405" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1d5d9e66-792b-430b-936a-b03bb208d277 + - d8d42bdb-4faf-4a5d-a5dc-37b87b23ea5b status: 200 OK code: 200 - duration: 22.4825ms + duration: 28.354333ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: GET response: proto: HTTP/2.0 @@ -1062,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0f726db-0287-4a94-9fac-01ee8ea64c09 + - b5e68934-34ed-420b-aea5-01e21abf2e81 status: 200 OK code: 200 - duration: 32.076417ms + duration: 35.001333ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:05.377435Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dcf0b16-54e4-40ec-84b1-79e8403ba132 + - 0723e085-15ca-41c9-a22c-dadc0cc38fa9 status: 200 OK code: 200 - duration: 27.57025ms + duration: 29.352709ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:13.232354Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7da6c184-21ca-4ceb-8190-e2cb54c0feda + - e50d7eff-f361-4b8d-8134-914b1403cb20 status: 200 OK code: 200 - duration: 25.959ms + duration: 26.490084ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -1209,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "405" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57bf9193-7c43-45a5-8ccc-9b1499e521ac + - 78cba6aa-79e4-47d9-b645-a08f69b34a67 status: 200 OK code: 200 - duration: 34.551792ms + duration: 28.654167ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: GET response: proto: HTTP/2.0 @@ -1258,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce692d1f-6293-47e6-84ad-1b18580cd863 + - 24ed3e9a-4c89-4f31-af5f-f8f86cf5a21b status: 200 OK code: 200 - duration: 33.746917ms + duration: 37.835042ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -1307,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:05.377435Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "475" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a21d6da-2951-4632-9136-3c313b443a4c + - 1cca24ba-b984-4a82-85e9-05d7137c0d95 status: 200 OK code: 200 - duration: 41.423084ms + duration: 23.978625ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1356,20 +1358,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 461 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"f274515f-1535-46bd-aaed-e15ef3cb1432","mac_address":"BC:24:11:74:D0:5B","name":null,"type":"custom"},"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:13.232354Z","zone":null}' headers: Content-Length: - - "1088" + - "461" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,50 +1379,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4d3677f-52fa-4f02-b908-843bb7521372 + - 610e0827-872c-41fb-aad6-23a94202331b status: 200 OK code: 200 - duration: 28.191542ms + duration: 31.132ms - id: 28 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 65 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"from_resource":{"mac_address":"bc:24:11:74:d0:5b","name":null}}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28/move - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:06.380805Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "369" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,48 +1428,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e0bf91b-e760-4c38-bcf1-9b3e502223f9 + - 1cf43d83-d263-471b-ad4f-4f224df50fd8 status: 200 OK code: 200 - duration: 73.335625ms + duration: 33.096417ms - id: 29 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 65 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"from_resource":{"mac_address":"bc:24:11:74:d0:5b","name":null}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432/move + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:06.380805Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:14.213428Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16380368-2545-4dea-81a7-fdd9a5c0739e + - faeb6033-4e92-4b1b-86e9-3f32b272ce5b status: 200 OK code: 200 - duration: 26.486042ms + duration: 49.897917ms - id: 30 request: proto: HTTP/1.1 @@ -1496,8 +1498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1505,20 +1507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:14.213428Z","zone":null}' headers: Content-Length: - - "1088" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b1884d28-e533-4d10-a525-db9bad464cf6 + - 14dfaed9-b936-48af-b453-d89f5a7129a9 status: 200 OK code: 200 - duration: 27.48725ms + duration: 36.142ms - id: 31 request: proto: HTTP/1.1 @@ -1545,8 +1547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -1554,20 +1556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:06.380805Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "369" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b8bd8bd-172c-491e-b189-e08822a8d95a + - bd3942e2-f9a5-4b68-8c42-81904b030d99 status: 200 OK code: 200 - duration: 24.52875ms + duration: 36.913166ms - id: 32 request: proto: HTTP/1.1 @@ -1594,8 +1596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.345216Z","custom_routes_propagation_enabled":false,"id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360","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-06-10T15:28:03.345216Z"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:14.213428Z","zone":null}' headers: Content-Length: - - "405" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d5757f25-157d-4615-b2c5-3eee824dd0d1 + - 8f09a7d5-6d7a-4d15-b81f-66ee677e52b8 status: 200 OK code: 200 - duration: 26.242541ms + duration: 27.274417ms - id: 33 request: proto: HTTP/1.1 @@ -1643,8 +1645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: GET response: proto: HTTP/2.0 @@ -1652,20 +1654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"created_at":"2025-06-30T15:02:07.515675Z","custom_routes_propagation_enabled":true,"id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e","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-06-30T15:02:07.575564Z"}' headers: Content-Length: - - "1088" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b296bfb0-bc7c-4887-ab75-e31ec0a88d26 + - 35b53cfd-851a-410c-a0f6-0213c00654a6 status: 200 OK code: 200 - duration: 25.573875ms + duration: 24.867875ms - id: 34 request: proto: HTTP/1.1 @@ -1692,8 +1694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: GET response: proto: HTTP/2.0 @@ -1701,20 +1703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 1065 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.298506Z","id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a"},"tags":[],"updated_at":"2025-06-10T15:28:06.380805Z","zone":null}' + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' headers: Content-Length: - - "369" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c1800ba3-595f-4c7a-b8b2-997bc2ce46d3 + - 8bd29419-6a46-46cd-a0f1-23d594aa477c status: 200 OK code: 200 - duration: 33.602708ms + duration: 33.974542ms - id: 35 request: proto: HTTP/1.1 @@ -1741,8 +1743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1750,20 +1752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 358 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.485919Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","name":"tf-pn-great-edison","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.485919Z","id":"9782ef74-9ce6-4d8b-a937-f1cf4837971a","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"},{"created_at":"2025-06-10T15:28:03.485919Z","id":"311ba436-1563-4f13-892f-72a356f217f7","private_network_id":"d8097484-8569-47e7-95d4-f6cc7ef0f64a","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:cc25::/64","updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}],"tags":[],"updated_at":"2025-06-10T15:28:03.485919Z","vpc_id":"15c2cd0d-682d-4d3d-a1e9-ccc2795ea360"}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.950535Z","id":"f274515f-1535-46bd-aaed-e15ef3cb1432","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"2438b67d-b57d-4d19-9896-94f6f20277ad"},"tags":[],"updated_at":"2025-06-30T15:02:14.213428Z","zone":null}' headers: Content-Length: - - "1088" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,11 +1773,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51be3143-1187-4d93-af30-6adca7a2eadf + - 772a143e-a87a-4e44-b54e-481642285737 status: 200 OK code: 200 - duration: 24.475167ms + duration: 34.220958ms - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1065 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:07.733144Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","name":"tf-pn-goofy-volhard","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.733144Z","id":"2438b67d-b57d-4d19-9896-94f6f20277ad","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"},{"created_at":"2025-06-30T15:02:07.733144Z","id":"2ea10fc8-b698-4f44-ad34-fd1706b0b4e0","private_network_id":"cab0379a-7c1a-40bb-9f75-b60d7dd73034","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d550::/64","updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}],"tags":[],"updated_at":"2025-06-30T15:02:07.733144Z","vpc_id":"44dea996-01a0-4e5b-8a7c-1fb85608a80e"}' + headers: + Content-Length: + - "1065" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:14 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f1e15dbc-728c-4d3e-bd9b-4fd74a8523de + status: 200 OK + code: 200 + duration: 21.505042ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1792,8 +1843,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: DELETE response: proto: HTTP/2.0 @@ -1810,9 +1861,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:07 GMT + - Mon, 30 Jun 2025 15:02:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,11 +1871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 248f13de-5f52-46a7-bc86-2eaf07e67f30 + - 9ac829b6-7b0a-4445-a0ae-259feea9a7a3 status: 204 No Content code: 204 - duration: 60.661666ms - - id: 37 + duration: 57.781959ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1839,8 +1890,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d8097484-8569-47e7-95d4-f6cc7ef0f64a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cab0379a-7c1a-40bb-9f75-b60d7dd73034 method: DELETE response: proto: HTTP/2.0 @@ -1857,9 +1908,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:08 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,11 +1918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ab86435-5251-48b8-93d0-82bb6c0e03c4 + - bc8fba55-30b5-4c6e-b434-e468ab8a5443 status: 204 No Content code: 204 - duration: 1.525887917s - - id: 38 + duration: 3.721737458s + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,8 +1937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/15c2cd0d-682d-4d3d-a1e9-ccc2795ea360 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44dea996-01a0-4e5b-8a7c-1fb85608a80e method: DELETE response: proto: HTTP/2.0 @@ -1904,9 +1955,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:08 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,11 +1965,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba233088-aa8a-46e1-ae7c-cf98cd3fe06a + - c0a7c765-1dbe-4430-87aa-4bd35395d4a7 status: 204 No Content code: 204 - duration: 82.34425ms - - id: 39 + duration: 83.887042ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1933,8 +1984,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/f274515f-1535-46bd-aaed-e15ef3cb1432 method: GET response: proto: HTTP/2.0 @@ -1944,7 +1995,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"f31b1c0a-58b1-4a0e-ba4d-d0ca00c74c28","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"f274515f-1535-46bd-aaed-e15ef3cb1432","type":"not_found"}' headers: Content-Length: - "123" @@ -1953,9 +2004,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:08 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1963,7 +2014,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d47578ad-7041-4b5c-9e03-5439b96d58d8 + - 1be5e6a4-6bd6-4308-aaed-ab2a887ac7c6 status: 404 Not Found code: 404 - duration: 27.703417ms + duration: 36.217375ms diff --git a/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml b/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml index 3d3d5c89af..f302426807 100644 --- a/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.315359Z","custom_routes_propagation_enabled":false,"id":"b898347a-f1bb-4f16-8c07-822c250c4fd4","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-06-10T15:28:03.315359Z"}' + body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":false,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.451348Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 539fdc0c-d542-4096-bace-09c24581d7f5 + - 817c6318-842e-4590-bb2d-ddd56a93abb5 status: 200 OK code: 200 - duration: 274.894417ms + duration: 67.193542ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a646f270-875e-4e5c-a51c-b3b50a34c833 + status: 200 OK + code: 200 + duration: 69.300542ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b898347a-f1bb-4f16-8c07-822c250c4fd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.315359Z","custom_routes_propagation_enabled":false,"id":"b898347a-f1bb-4f16-8c07-822c250c4fd4","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-06-10T15:28:03.315359Z"}' + body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7a2fa9e-e48d-48ca-a97d-21074af9e236 + - 4f3534e5-12e3-4446-a492-90104e4cbf6b status: 200 OK code: 200 - duration: 59.912958ms - - id: 2 + duration: 71.485333ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 211 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-inspiring-mendel","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"name":"tf-pn-hopeful-mayer","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.450107Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","name":"tf-pn-inspiring-mendel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.450107Z","id":"1eba050b-6571-4a1e-af4b-2d1655e48f67","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"},{"created_at":"2025-06-10T15:28:03.450107Z","id":"2e7258e4-99da-455e-9b54-8ab9f2515c9b","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2c79::/64","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}],"tags":[],"updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "1092" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4280073-b79e-441e-bf73-12585f388561 + - 814c1232-6e30-437d-b2f2-cd57ba10b1d6 + status: 500 Internal Server Error + code: 500 + duration: 1.810641208s + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 211 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-pn-hopeful-mayer","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1065 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' + headers: + Content-Length: + - "1065" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:11 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2d159c7b-5ed1-4827-a828-4fb2dc6ad344 status: 200 OK code: 200 - duration: 595.430667ms - - id: 3 + duration: 566.628709ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/35de1bb9-f810-47cd-a674-8cde9a75a7dc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce method: GET response: proto: HTTP/2.0 @@ -176,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.450107Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","name":"tf-pn-inspiring-mendel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.450107Z","id":"1eba050b-6571-4a1e-af4b-2d1655e48f67","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"},{"created_at":"2025-06-10T15:28:03.450107Z","id":"2e7258e4-99da-455e-9b54-8ab9f2515c9b","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2c79::/64","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}],"tags":[],"updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dad8747-c9d3-4d7b-b733-71b6f08db3d7 + - f56aeb3c-ae89-4677-8b4c-875140d75c2c status: 200 OK code: 200 - duration: 47.927709ms - - id: 4 + duration: 29.986666ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -212,13 +314,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce"},"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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -227,20 +329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-10T15:28:04.204882Z","id":"12fc2475-de83-4839-bab9-cbbd3a1f55d1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1eba050b-6571-4a1e-af4b-2d1655e48f67"},"tags":[],"updated_at":"2025-06-10T15:28:04.204882Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,11 +350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88206a36-ea71-42f5-96c9-02f2e9aa398a + - 39b36abf-e187-44d1-9db7-099211894c3c status: 200 OK code: 200 - duration: 200.000125ms - - id: 5 + duration: 1.237219917s + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -267,8 +369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/12fc2475-de83-4839-bab9-cbbd3a1f55d1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 method: GET response: proto: HTTP/2.0 @@ -276,20 +378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-10T15:28:04.204882Z","id":"12fc2475-de83-4839-bab9-cbbd3a1f55d1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1eba050b-6571-4a1e-af4b-2d1655e48f67"},"tags":[],"updated_at":"2025-06-10T15:28:04.204882Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,11 +399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02d8cf5b-1a73-4f6a-9bf7-adc060a649f8 + - 3486f1df-3f5c-451a-8e54-47b02f750673 status: 200 OK code: 200 - duration: 28.4335ms - - id: 6 + duration: 27.5695ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -316,8 +418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/35de1bb9-f810-47cd-a674-8cde9a75a7dc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce method: GET response: proto: HTTP/2.0 @@ -325,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.450107Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","name":"tf-pn-inspiring-mendel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.450107Z","id":"1eba050b-6571-4a1e-af4b-2d1655e48f67","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"},{"created_at":"2025-06-10T15:28:03.450107Z","id":"2e7258e4-99da-455e-9b54-8ab9f2515c9b","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2c79::/64","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}],"tags":[],"updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,11 +448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fad9746a-b627-4b0d-8b6e-1577c5f4db53 + - 8702efef-b50a-478a-9e4f-458fa2687c17 status: 200 OK code: 200 - duration: 51.189375ms - - id: 7 + duration: 32.703ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -365,8 +467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/12fc2475-de83-4839-bab9-cbbd3a1f55d1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 method: GET response: proto: HTTP/2.0 @@ -374,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-10T15:28:04.204882Z","id":"12fc2475-de83-4839-bab9-cbbd3a1f55d1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1eba050b-6571-4a1e-af4b-2d1655e48f67"},"tags":[],"updated_at":"2025-06-10T15:28:04.204882Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,11 +497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d864abd6-d622-4c26-aa46-89d0777a750e + - 18210f85-1eb3-4f08-afc3-e0d14728bb7d status: 200 OK code: 200 - duration: 59.820125ms - - id: 8 + duration: 34.971917ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -414,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b898347a-f1bb-4f16-8c07-822c250c4fd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be method: GET response: proto: HTTP/2.0 @@ -423,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.315359Z","custom_routes_propagation_enabled":false,"id":"b898347a-f1bb-4f16-8c07-822c250c4fd4","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-06-10T15:28:03.315359Z"}' + body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,11 +546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4813140a-50eb-4bf5-a170-adc162fb576a + - 12751680-c2f2-4b46-ac99-520be5af635e status: 200 OK code: 200 - duration: 20.258875ms - - id: 9 + duration: 29.476084ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -463,8 +565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/35de1bb9-f810-47cd-a674-8cde9a75a7dc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce method: GET response: proto: HTTP/2.0 @@ -472,20 +574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.450107Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","name":"tf-pn-inspiring-mendel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.450107Z","id":"1eba050b-6571-4a1e-af4b-2d1655e48f67","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"},{"created_at":"2025-06-10T15:28:03.450107Z","id":"2e7258e4-99da-455e-9b54-8ab9f2515c9b","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2c79::/64","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}],"tags":[],"updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,11 +595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76b5d4b2-9df1-4520-bfeb-d99dca1b0624 + - c9ae1a21-a485-40a6-8ca6-2eda0e63b2a3 status: 200 OK code: 200 - duration: 29.562917ms - - id: 10 + duration: 30.577416ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -512,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/12fc2475-de83-4839-bab9-cbbd3a1f55d1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 method: GET response: proto: HTTP/2.0 @@ -521,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-10T15:28:04.204882Z","id":"12fc2475-de83-4839-bab9-cbbd3a1f55d1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1eba050b-6571-4a1e-af4b-2d1655e48f67"},"tags":[],"updated_at":"2025-06-10T15:28:04.204882Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,11 +644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e846ecb3-5153-402e-a6c2-18e7cdfe6e8d + - 958dacb9-7171-49c5-98ba-398e3d2770aa status: 200 OK code: 200 - duration: 26.491417ms - - id: 11 + duration: 28.17125ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -561,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/35de1bb9-f810-47cd-a674-8cde9a75a7dc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce method: GET response: proto: HTTP/2.0 @@ -570,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1092 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.450107Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","name":"tf-pn-inspiring-mendel","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.450107Z","id":"1eba050b-6571-4a1e-af4b-2d1655e48f67","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"},{"created_at":"2025-06-10T15:28:03.450107Z","id":"2e7258e4-99da-455e-9b54-8ab9f2515c9b","private_network_id":"35de1bb9-f810-47cd-a674-8cde9a75a7dc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2c79::/64","updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}],"tags":[],"updated_at":"2025-06-10T15:28:03.450107Z","vpc_id":"b898347a-f1bb-4f16-8c07-822c250c4fd4"}' + body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' headers: Content-Length: - - "1092" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,11 +693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b178445-1dc2-4eac-aab6-f4caaf1d2200 + - 97b41251-f50e-4596-9410-e97e29313161 status: 200 OK code: 200 - duration: 32.038708ms - - id: 12 + duration: 29.45725ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -612,8 +714,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/12fc2475-de83-4839-bab9-cbbd3a1f55d1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 method: DELETE response: proto: HTTP/2.0 @@ -630,9 +732,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,11 +742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37425091-01c3-45ff-b3ea-e1088f5cedf3 + - f2373d2a-eb88-49d1-ba9a-a6c0f2fc9d20 status: 204 No Content code: 204 - duration: 64.934458ms - - id: 13 + duration: 41.193292ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -659,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/35de1bb9-f810-47cd-a674-8cde9a75a7dc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce method: DELETE response: proto: HTTP/2.0 @@ -677,9 +779,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,11 +789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e8cbf9-038c-47d6-8f2a-bf36ae147c13 + - 8feca774-0fb3-40bd-b8f4-894201ee3bf2 status: 204 No Content code: 204 - duration: 1.344626625s - - id: 14 + duration: 4.342538167s + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -706,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b898347a-f1bb-4f16-8c07-822c250c4fd4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be method: DELETE response: proto: HTTP/2.0 @@ -724,9 +826,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,11 +836,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a847f5cf-34d3-4d85-ae17-9d3e300b460f + - 65e14abe-5cb3-49d6-a5db-6cd005b7f04b status: 204 No Content code: 204 - duration: 91.503125ms - - id: 15 + duration: 90.28525ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -753,8 +855,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/12fc2475-de83-4839-bab9-cbbd3a1f55d1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 method: GET response: proto: HTTP/2.0 @@ -764,7 +866,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"12fc2475-de83-4839-bab9-cbbd3a1f55d1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","type":"not_found"}' headers: Content-Length: - "123" @@ -773,9 +875,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,7 +885,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 446536d7-3151-4a55-9185-624f945e9132 + - 342dc110-f35d-4843-a1dc-009dc7bce99a status: 404 Not Found code: 404 - duration: 23.587334ms + duration: 28.432209ms diff --git a/internal/services/ipam/testdata/ipamip-with-tags.cassette.yaml b/internal/services/ipam/testdata/ipamip-with-tags.cassette.yaml index 4a881c8f23..755ec0724f 100644 --- a/internal/services/ipam/testdata/ipamip-with-tags.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-with-tags.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 405 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.333159Z","custom_routes_propagation_enabled":false,"id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f","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-06-10T15:28:03.333159Z"}' + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":false,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.486514Z"}' headers: Content-Length: - - "405" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86fcdecf-b81f-4308-ac84-71a7c0171741 + - aa4faa71-61d7-44bd-80e1-db7cf064a873 status: 200 OK code: 200 - duration: 99.45625ms + duration: 109.651166ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":true,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.536114Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:02:07 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - df4ca5f8-b808-463c-80bd-5cb022dc5e96 + status: 200 OK + code: 200 + duration: 48.071ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fc4c5842-7a67-4f55-8ed2-37fcfd614a2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3 method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.333159Z","custom_routes_propagation_enabled":false,"id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f","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-06-10T15:28:03.333159Z"}' + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":true,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.536114Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:03 GMT + - Mon, 30 Jun 2025 15:02:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a17431a-313c-439f-af27-16f10cdb5726 + - d6858cf1-c2c6-4fe9-b83c-c2d3518f4711 status: 200 OK code: 200 - duration: 51.725292ms - - id: 2 + duration: 59.136375ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 169 + content_length: 212 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-strange-raman","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"name":"tf-pn-gallant-diffie","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b88a28d1-b5ce-430f-8676-1bcf9b854f89 + - 2278dc98-80d9-483c-97c1-e4fbd277d149 status: 200 OK code: 200 - duration: 709.164958ms - - id: 3 + duration: 671.570959ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -176,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceec7372-7d05-43df-ab64-c5cba3fc5f45 + - 41ad5219-ac29-432f-bf3b-39e3c9ce8071 status: 200 OK code: 200 - duration: 24.383ms - - id: 4 + duration: 31.841ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -212,13 +263,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d"},"is_ipv6":false,"tags":["terraform-test","ipam"]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0"},"is_ipv6":false,"tags":["terraform-test","ipam"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -227,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 381 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-10T15:28:04.390766Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-30T15:02:10.967542Z","zone":null}' headers: Content-Length: - - "393" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44e27380-fa0e-43e9-9a1e-d1b883a01205 + - af7db2ce-8770-456c-85fd-b5faefc26e33 status: 200 OK code: 200 - duration: 344.422416ms - - id: 5 + duration: 3.910014666s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -267,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -276,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 381 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-10T15:28:04.390766Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-30T15:02:10.967542Z","zone":null}' headers: Content-Length: - - "393" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,11 +348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40b104e9-a94d-4fad-97ae-09a0c549dcff + - 47285bd4-4ffb-4f13-889e-9de59ebd7ed3 status: 200 OK code: 200 - duration: 31.045958ms - - id: 6 + duration: 35.205709ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -316,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -325,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a02fa7a5-3a52-4d5d-bf67-a328a3e127ed + - faaeaf9d-09d1-4802-9008-600c6c54582d status: 200 OK code: 200 - duration: 26.629584ms - - id: 7 + duration: 29.475584ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -365,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -374,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 381 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-10T15:28:04.390766Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-30T15:02:10.967542Z","zone":null}' headers: Content-Length: - - "393" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,11 +446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2047f5f2-75d3-4682-a7cf-38045f84d45c + - 1f6d9390-5a55-4640-9d40-ab0aa0d636ce status: 200 OK code: 200 - duration: 29.273334ms - - id: 8 + duration: 41.571667ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -414,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fc4c5842-7a67-4f55-8ed2-37fcfd614a2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3 method: GET response: proto: HTTP/2.0 @@ -423,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.333159Z","custom_routes_propagation_enabled":false,"id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f","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-06-10T15:28:03.333159Z"}' + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":true,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.536114Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,11 +495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e00fe7ae-3d55-4bcf-8b0a-3eb886cfaca3 + - 67361033-11b1-4b55-ada5-35c81ebf5b6f status: 200 OK code: 200 - duration: 36.692375ms - - id: 9 + duration: 29.40325ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -463,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -472,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40113978-a41e-4e99-8683-7bbba67d5908 + - d8ac7d5a-efa4-44f8-94dd-456376fba419 status: 200 OK code: 200 - duration: 24.715167ms - - id: 10 + duration: 29.307584ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -512,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -521,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 381 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-10T15:28:04.390766Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-30T15:02:10.967542Z","zone":null}' headers: Content-Length: - - "393" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c334caa-9aa8-45e6-a6f7-f2c028606c63 + - f72cc327-a7a4-423e-9c75-e60c10906dc2 status: 200 OK code: 200 - duration: 23.656458ms - - id: 11 + duration: 33.623791ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -561,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -570,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:04 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccede756-506e-4e0f-bda7-4f866dbe0406 + - 31fc58e6-1774-4ea0-a426-fd42efc33833 status: 200 OK code: 200 - duration: 21.702042ms - - id: 12 + duration: 28.274917ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -610,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fc4c5842-7a67-4f55-8ed2-37fcfd614a2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3 method: GET response: proto: HTTP/2.0 @@ -619,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.333159Z","custom_routes_propagation_enabled":false,"id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f","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-06-10T15:28:03.333159Z"}' + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":true,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.536114Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4021e51a-b7ac-48c4-81be-2598e9171afb + - cd698652-3337-45c5-96e3-ec7e17558cd8 status: 200 OK code: 200 - duration: 27.88ms - - id: 13 + duration: 25.264917ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -659,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -668,20 +719,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,11 +740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 446eda97-9cb8-464e-a897-5878b5129799 + - a26600a1-381d-4b7a-8d72-af149b936dac status: 200 OK code: 200 - duration: 28.138792ms - - id: 14 + duration: 27.661959ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -708,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -717,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 381 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-10T15:28:04.390766Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam"],"updated_at":"2025-06-30T15:02:10.967542Z","zone":null}' headers: Content-Length: - - "393" + - "381" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -738,11 +789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53f52b12-2f01-41d3-a49b-b62d48fd4bbc + - 79e01fd2-af14-4289-a36e-7eacb2af6f65 status: 200 OK code: 200 - duration: 28.546ms - - id: 15 + duration: 30.348292ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -757,8 +808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -766,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,11 +838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9653301-08a4-4e13-9d65-f325397609c9 + - bc0c0192-197b-477c-952c-18e81408da2d status: 200 OK code: 200 - duration: 23.349292ms - - id: 16 + duration: 40.781333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -808,8 +859,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: PATCH response: proto: HTTP/2.0 @@ -817,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 391 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-10T15:28:05.378611Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-30T15:02:13.205613Z","zone":null}' headers: Content-Length: - - "404" + - "391" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,11 +889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bee519f6-47a4-4722-8b61-e052298ed7b0 + - 628ff9c3-ddcb-4a4b-8d52-e7dc9084a169 status: 200 OK code: 200 - duration: 45.027625ms - - id: 17 + duration: 40.119125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -857,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -866,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 391 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-10T15:28:05.378611Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-30T15:02:13.205613Z","zone":null}' headers: Content-Length: - - "404" + - "391" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,11 +938,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2083e643-382b-4d2b-8045-664b0e30270d + - d0f03615-0957-4605-ba38-60395b9cb586 status: 200 OK code: 200 - duration: 36.884542ms - - id: 18 + duration: 39.436541ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -906,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -915,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,11 +987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bc42403-4cb4-4415-a32c-5af2c5312e07 + - 0f17ac61-ad6d-44a3-918a-daa35fa9a291 status: 200 OK code: 200 - duration: 28.256083ms - - id: 19 + duration: 28.977958ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -955,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -964,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 391 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-10T15:28:05.378611Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-30T15:02:13.205613Z","zone":null}' headers: Content-Length: - - "404" + - "391" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,11 +1036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f8baa35-2045-4e9c-900c-561def6b2148 + - d3021503-41b4-451e-bb51-1f5011a454f7 status: 200 OK code: 200 - duration: 55.828458ms - - id: 20 + duration: 36.292958ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1004,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fc4c5842-7a67-4f55-8ed2-37fcfd614a2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 405 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.333159Z","custom_routes_propagation_enabled":false,"id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f","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-06-10T15:28:03.333159Z"}' + body: '{"created_at":"2025-06-30T15:02:07.486514Z","custom_routes_propagation_enabled":true,"id":"080235f8-088a-49a8-8ecd-2353d85181a3","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-06-30T15:02:07.536114Z"}' headers: Content-Length: - - "405" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,11 +1085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6672a17-a7fc-43bc-9d21-d6c395ee2fd3 + - a26a5f78-be0a-4703-8c69-37efdb30dccd status: 200 OK code: 200 - duration: 20.941542ms - - id: 21 + duration: 29.966125ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1053,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -1062,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,11 +1134,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ed7101e-5fef-49de-91f4-e5db2265524f + - 176677a2-dfff-48fc-a234-f6819a4ca665 status: 200 OK code: 200 - duration: 23.083209ms - - id: 22 + duration: 38.456833ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1102,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 404 + content_length: 391 uncompressed: false - body: '{"address":"172.16.32.2/22","created_at":"2025-06-10T15:28:04.390766Z","id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"8741ee89-9f55-4db6-9673-a86fce8fa116"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-10T15:28:05.378611Z","zone":null}' + body: '{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:10.967542Z","id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"353c90bf-fc51-4a24-8118-22736d07e529"},"tags":["terraform-test","ipam","updated"],"updated_at":"2025-06-30T15:02:13.205613Z","zone":null}' headers: Content-Length: - - "404" + - "391" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,11 +1183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9d24a08-be7d-4095-9b15-e5de67bed53c + - f9b24bc6-2728-4ca4-93e4-81bf18bf379e status: 200 OK code: 200 - duration: 27.04575ms - - id: 23 + duration: 28.345083ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1151,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-10T15:28:03.533748Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","name":"tf-pn-strange-raman","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-10T15:28:03.533748Z","id":"8741ee89-9f55-4db6-9673-a86fce8fa116","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"},{"created_at":"2025-06-10T15:28:03.533748Z","id":"0133ee41-de8e-4ab5-b8c8-abebb830a720","private_network_id":"6cd74f92-6066-4ef4-ae1e-9721cc1ae51d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:17c5::/64","updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}],"tags":[],"updated_at":"2025-06-10T15:28:03.533748Z","vpc_id":"fc4c5842-7a67-4f55-8ed2-37fcfd614a2f"}' + body: '{"created_at":"2025-06-30T15:02:07.687813Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"f9a14fb1-1158-4301-834d-522b5bc23de0","name":"tf-pn-gallant-diffie","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:07.687813Z","id":"353c90bf-fc51-4a24-8118-22736d07e529","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"},{"created_at":"2025-06-30T15:02:07.687813Z","id":"94d02b4d-2d80-4fc1-8993-00d2824b7241","private_network_id":"f9a14fb1-1158-4301-834d-522b5bc23de0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:15ab::/64","updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}],"tags":[],"updated_at":"2025-06-30T15:02:07.687813Z","vpc_id":"080235f8-088a-49a8-8ecd-2353d85181a3"}' headers: Content-Length: - - "1089" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:05 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,11 +1232,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f24b7e6-ea40-4bbb-bd80-0aa16f0b3be6 + - bf01921e-0cd3-458d-96a3-2083defc272c status: 200 OK code: 200 - duration: 30.258291ms - - id: 24 + duration: 31.788125ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1202,8 +1253,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: DELETE response: proto: HTTP/2.0 @@ -1220,9 +1271,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:06 GMT + - Mon, 30 Jun 2025 15:02:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,11 +1281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f45c9b94-0b2b-453b-8d9e-8081ce2a6e65 + - b6878a57-35e9-4b39-b4e9-5476ef9f562b status: 204 No Content code: 204 - duration: 50.088417ms - - id: 25 + duration: 38.637292ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1249,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6cd74f92-6066-4ef4-ae1e-9721cc1ae51d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/f9a14fb1-1158-4301-834d-522b5bc23de0 method: DELETE response: proto: HTTP/2.0 @@ -1267,9 +1318,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:07 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,11 +1328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea098f93-00e5-45b7-9486-e2fdcaea371b + - 22de75d9-7758-4dd4-80b4-06a23908f151 status: 204 No Content code: 204 - duration: 1.489190541s - - id: 26 + duration: 4.372743292s + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1296,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/fc4c5842-7a67-4f55-8ed2-37fcfd614a2f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/080235f8-088a-49a8-8ecd-2353d85181a3 method: DELETE response: proto: HTTP/2.0 @@ -1314,9 +1365,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:07 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,11 +1375,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27bc06e1-c20b-4dc2-88fe-6ba0b6cbcefe + - 3ffc7443-3586-4474-ad5f-ec16d53899f8 status: 204 No Content code: 204 - duration: 83.932167ms - - id: 27 + duration: 98.351125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1343,8 +1394,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/ba0192d4-2b9b-4ea4-b919-fac6a47505fe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/7ae44882-d1f0-4b4a-9214-6ccff14a2f16 method: GET response: proto: HTTP/2.0 @@ -1354,7 +1405,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"ba0192d4-2b9b-4ea4-b919-fac6a47505fe","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"7ae44882-d1f0-4b4a-9214-6ccff14a2f16","type":"not_found"}' headers: Content-Length: - "123" @@ -1363,9 +1414,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 10 Jun 2025 15:28:07 GMT + - Mon, 30 Jun 2025 15:02:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1373,7 +1424,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70f4026-8298-47b0-bedc-88fbd017c903 + - 0dc1afdc-8391-4bc6-a26e-c67046dace1f status: 404 Not Found code: 404 - duration: 24.55275ms + duration: 26.142083ms 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 bb485d3237..ebc0d43bbe 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":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 362 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.317771Z","id":"a8bd5ad5-656b-418b-b9f8-23e98443b809","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-05T18:42:19.317771Z"}' + body: '{"created_at":"2025-06-30T15:12:12.300336Z","custom_routes_propagation_enabled":false,"id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee","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-06-30T15:12:12.300336Z"}' headers: Content-Length: - - "362" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:19 GMT + - Mon, 30 Jun 2025 15:12:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66f1f830-0deb-4675-99a4-a118bfe6e2d0 + - d3b4f61e-cf5b-40ab-a6c2-1b9f99edba03 status: 200 OK code: 200 - duration: 277.507606ms + duration: 300.349292ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:12:12.300336Z","custom_routes_propagation_enabled":true,"id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee","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-06-30T15:12:12.356994Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:12:12 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4939ec90-bb2d-4cb4-a965-4dba080e6072 + status: 200 OK + code: 200 + duration: 45.12025ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8bd5ad5-656b-418b-b9f8-23e98443b809 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.317771Z","id":"a8bd5ad5-656b-418b-b9f8-23e98443b809","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-05T18:42:19.317771Z"}' + body: '{"created_at":"2025-06-30T15:12:12.300336Z","custom_routes_propagation_enabled":true,"id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee","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-06-30T15:12:12.356994Z"}' headers: Content-Length: - - "362" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:19 GMT + - Mon, 30 Jun 2025 15:12:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fc17aac-30ba-4ae9-8695-7fd7a9c0c7ae + - dd3e5ae0-0b58-4d24-841b-c523eb1a2005 status: 200 OK code: 200 - duration: 43.765853ms - - id: 2 + duration: 38.716667ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 172 + content_length: 212 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-great-chatterjee","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"name":"tf-pn-admiring-gould","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.452134Z","dhcp_enabled":true,"id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","name":"tf-pn-great-chatterjee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T18:42:19.452134Z","id":"727c4c6b-04d0-475b-bc89-d0bd35281902","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"},{"created_at":"2025-05-05T18:42:19.452134Z","id":"56891659-24cd-472f-874b-3116ebd40d2d","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:f5b2::/64","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}],"tags":[],"updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"created_at":"2025-06-30T15:12:12.483517Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"da50beb2-d97f-4e14-8ead-60751924ee8d","name":"tf-pn-admiring-gould","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:12:12.483517Z","id":"018b66ab-c139-42f5-92c2-a62d9c95b732","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"},{"created_at":"2025-06-30T15:12:12.483517Z","id":"69ac7404-778c-4987-9894-1b9f944ab86d","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5d5c::/64","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}],"tags":[],"updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}' headers: Content-Length: - - "1049" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:19 GMT + - Mon, 30 Jun 2025 15:12:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7ef730e-b1b4-4d6b-b3fe-8d1de01d00db + - c3fdf1d7-a197-473d-ab83-1c25517cadae status: 200 OK code: 200 - duration: 835.995734ms - - id: 3 + duration: 563.313917ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: GET response: proto: HTTP/2.0 @@ -176,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.452134Z","dhcp_enabled":true,"id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","name":"tf-pn-great-chatterjee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T18:42:19.452134Z","id":"727c4c6b-04d0-475b-bc89-d0bd35281902","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"},{"created_at":"2025-05-05T18:42:19.452134Z","id":"56891659-24cd-472f-874b-3116ebd40d2d","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:f5b2::/64","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}],"tags":[],"updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"created_at":"2025-06-30T15:12:12.483517Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"da50beb2-d97f-4e14-8ead-60751924ee8d","name":"tf-pn-admiring-gould","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:12:12.483517Z","id":"018b66ab-c139-42f5-92c2-a62d9c95b732","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"},{"created_at":"2025-06-30T15:12:12.483517Z","id":"69ac7404-778c-4987-9894-1b9f944ab86d","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5d5c::/64","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}],"tags":[],"updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}' headers: Content-Length: - - "1049" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:20 GMT + - Mon, 30 Jun 2025 15:12:13 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6145918-f9ce-4159-97c3-aeb3917bff85 + - 33c05780-1dc5-41bc-965c-3efd9f973e7f status: 200 OK code: 200 - duration: 70.48544ms - - id: 4 + duration: 29.578ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -212,13 +263,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source":{"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d"},"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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -227,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:20.537586Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:14.368594Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:20 GMT + - Mon, 30 Jun 2025 15:12:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 796805e4-e4f7-4b90-bbf7-fb0be4babfa2 + - 6e9b1c12-b948-45da-a2f5-ed1a2d6922a0 status: 200 OK code: 200 - duration: 423.604069ms - - id: 5 + duration: 1.374342916s + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -267,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/9607c05e-38c8-4b47-ad5a-735beb90bbef + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/83e0517b-d0dd-4479-aa01-cc9741f0dce9 method: GET response: proto: HTTP/2.0 @@ -276,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 369 + content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:20.537586Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:14.368594Z","zone":null}' headers: Content-Length: - - "369" + - "358" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:20 GMT + - Mon, 30 Jun 2025 15:12:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,11 +348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19d24acb-15d9-4015-81c4-c454c3147613 + - 5e30fc57-8e7f-4bd6-bbba-5b7af22118b2 status: 200 OK code: 200 - duration: 60.590049ms - - id: 6 + duration: 30.157166ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -316,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: GET response: proto: HTTP/2.0 @@ -325,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.452134Z","dhcp_enabled":true,"id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","name":"tf-pn-great-chatterjee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T18:42:19.452134Z","id":"727c4c6b-04d0-475b-bc89-d0bd35281902","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"},{"created_at":"2025-05-05T18:42:19.452134Z","id":"56891659-24cd-472f-874b-3116ebd40d2d","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:f5b2::/64","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}],"tags":[],"updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"created_at":"2025-06-30T15:12:12.483517Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"da50beb2-d97f-4e14-8ead-60751924ee8d","name":"tf-pn-admiring-gould","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:12:12.483517Z","id":"018b66ab-c139-42f5-92c2-a62d9c95b732","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"},{"created_at":"2025-06-30T15:12:12.483517Z","id":"69ac7404-778c-4987-9894-1b9f944ab86d","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5d5c::/64","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}],"tags":[],"updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}' headers: Content-Length: - - "1049" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:20 GMT + - Mon, 30 Jun 2025 15:12:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 81dbebd1-8702-4aac-af2b-ec7228200672 + - d36483ff-6e1e-47ff-a1b7-26bde0bd48d8 status: 200 OK code: 200 - duration: 41.868405ms - - id: 7 + duration: 32.840416ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -361,13 +412,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: @@ -376,20 +427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 923 + content_length: 894 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771407Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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-05-05T18:42:21.020771407Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147108Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:14.612147108Z","zone":"fr-par-1"}' headers: Content-Length: - - "923" + - "894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:21 GMT + - Mon, 30 Jun 2025 15:12:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,11 +448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e6df086-2cee-46a7-8962-43127c481719 + - c170a522-003a-4f3a-afdb-94db9e341531 status: 200 OK code: 200 - duration: 397.07061ms - - id: 8 + duration: 375.808209ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -416,8 +467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -425,20 +476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 917 + content_length: 888 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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-05-05T18:42:21.020771Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:14.612147Z","zone":"fr-par-1"}' headers: Content-Length: - - "917" + - "888" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:21 GMT + - Mon, 30 Jun 2025 15:12:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,11 +497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9089302-1bd8-47b4-8f01-262d0ecbdaa8 + - eb01b03c-1924-4a86-adce-8d7e92e05bf3 status: 200 OK code: 200 - duration: 81.663683ms - - id: 9 + duration: 77.667333ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -465,8 +516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -474,20 +525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:22.870330Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:17.026014Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:51 GMT + - Mon, 30 Jun 2025 15:12:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,11 +546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0fe71ae-e944-4387-94c4-45346f301af0 + - bc4454c6-13ac-4c28-88a1-16869278230b status: 200 OK code: 200 - duration: 87.958021ms - - id: 10 + duration: 123.364ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -510,14 +561,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"]}' + body: '{"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/attach-private-network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/attach-private-network method: POST response: proto: HTTP/2.0 @@ -525,20 +576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1418 + content_length: 1377 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:51.876667322Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:22.870330Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"pending","updated_at":"2025-05-05T18:42:51.876667322Z"}' + body: '{"created_at":"2025-06-30T15:12:45.444081589Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:17.026014Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"pending","updated_at":"2025-06-30T15:12:45.444081589Z"}' headers: Content-Length: - - "1418" + - "1377" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:52 GMT + - Mon, 30 Jun 2025 15:12:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,11 +597,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d36c1dd-a31a-4f51-b788-747a1a573116 + - a4eeba9a-f295-4583-ba2b-2cce9fb31ee7 status: 200 OK code: 200 - duration: 1.572146529s - - id: 11 + duration: 635.765625ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -565,8 +616,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -574,20 +625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1245 + content_length: 1209 uncompressed: false - body: '{"private_network":[{"created_at":"2025-05-05T18:42:51.876667Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"pending","updated_at":"2025-05-05T18:42:51.876667Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-06-30T15:12:45.444082Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"pending","updated_at":"2025-06-30T15:12:45.444082Z"}],"total_count":1}' headers: Content-Length: - - "1245" + - "1209" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:42:53 GMT + - Mon, 30 Jun 2025 15:12:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -595,11 +646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a49f3f5-ee96-4866-a4ce-f90b719f7f67 + - 700751f4-be58-47f9-a75a-c0241578c9b8 status: 200 OK code: 200 - duration: 509.986718ms - - id: 12 + duration: 154.110417ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -614,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -623,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1243 + content_length: 1207 uncompressed: false - body: '{"private_network":[{"created_at":"2025-05-05T18:42:51.876667Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"ready","updated_at":"2025-05-05T18:42:54.331927Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-06-30T15:12:45.444082Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"ready","updated_at":"2025-06-30T15:12:48.016086Z"}],"total_count":1}' headers: Content-Length: - - "1243" + - "1207" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:23 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,11 +695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cfd8388-5d05-43e0-b66d-c098f81ad3c0 + - 0765affd-9355-4a7b-87bd-4e0c64d0c14f status: 200 OK code: 200 - duration: 253.670736ms - - id: 13 + duration: 184.977833ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -663,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -672,20 +723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:23 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,11 +744,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7ddb9d2-a5f0-49b5-a32f-fd8675517b69 + - e13e9b6a-2fd4-402b-9179-5c109a8e91f3 status: 200 OK code: 200 - duration: 75.827548ms - - id: 14 + duration: 66.454667ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -712,8 +763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -721,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:23 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -742,11 +793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c12fd20-74e9-4e10-81a7-59719a596357 + - 122c0302-e099-402a-9539-a371c6349d84 status: 200 OK code: 200 - duration: 67.57125ms - - id: 15 + duration: 93.775417ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -761,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -770,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1243 + content_length: 1207 uncompressed: false - body: '{"private_network":[{"created_at":"2025-05-05T18:42:51.876667Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"ready","updated_at":"2025-05-05T18:42:54.331927Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-06-30T15:12:45.444082Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"ready","updated_at":"2025-06-30T15:12:48.016086Z"}],"total_count":1}' headers: Content-Length: - - "1243" + - "1207" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:24 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,11 +842,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41c369ef-8a84-4b43-bb2b-671b4fc1866e + - 49dd324b-b1f5-4155-85df-257f6a6b6ed1 status: 200 OK code: 200 - duration: 318.273397ms - - id: 16 + duration: 143.505333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -810,8 +861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=70faaf5f-f6e2-4095-9379-8956fa73f1c5&resource_type=lb_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=da50beb2-d97f-4e14-8ead-60751924ee8d&resource_type=lb_server method: GET response: proto: HTTP/2.0 @@ -819,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:24 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,11 +891,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f884f11d-dda3-4157-aeec-19d3e2483cbf + - d618d4a9-9bee-4aae-a896-f23aa96459de status: 200 OK code: 200 - duration: 77.578809ms - - id: 17 + duration: 69.79175ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -859,7 +910,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: @@ -868,20 +919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:24 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,11 +940,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bbe046a-e3b0-4a93-a86e-b26597d177f6 + - 8b91bfc7-5811-4c17-9af1-c3823c081fdf status: 200 OK code: 200 - duration: 63.959913ms - - id: 18 + duration: 49.652625ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -908,8 +959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -917,20 +968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:24 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,11 +989,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d628b32-7af7-4630-b38b-a5fe32d037e0 + - fbc1ec89-4942-49cb-80dc-f62747619f9f status: 200 OK code: 200 - duration: 79.706359ms - - id: 19 + duration: 79.825917ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -957,7 +1008,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: @@ -966,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:24 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,11 +1038,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 793ba380-9c51-48f5-8f45-af2186839ba3 + - b8f334bd-b90f-4663-8597-387aca988f61 status: 200 OK code: 200 - duration: 59.175099ms - - id: 20 + duration: 56.567791ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1006,8 +1057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8bd5ad5-656b-418b-b9f8-23e98443b809 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee method: GET response: proto: HTTP/2.0 @@ -1015,20 +1066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.317771Z","id":"a8bd5ad5-656b-418b-b9f8-23e98443b809","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-05T18:42:19.317771Z"}' + body: '{"created_at":"2025-06-30T15:12:12.300336Z","custom_routes_propagation_enabled":true,"id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee","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-06-30T15:12:12.356994Z"}' headers: Content-Length: - - "362" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,11 +1087,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d6f0b78-8b46-4e20-92e9-9e724fa7ff33 + - e5c6924c-fe2d-40bd-939c-e0552ca84edc status: 200 OK code: 200 - duration: 67.694492ms - - id: 21 + duration: 31.607458ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1055,8 +1106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: GET response: proto: HTTP/2.0 @@ -1064,20 +1115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.452134Z","dhcp_enabled":true,"id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","name":"tf-pn-great-chatterjee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T18:42:19.452134Z","id":"727c4c6b-04d0-475b-bc89-d0bd35281902","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"},{"created_at":"2025-05-05T18:42:19.452134Z","id":"56891659-24cd-472f-874b-3116ebd40d2d","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:f5b2::/64","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}],"tags":[],"updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"created_at":"2025-06-30T15:12:12.483517Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"da50beb2-d97f-4e14-8ead-60751924ee8d","name":"tf-pn-admiring-gould","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:12:12.483517Z","id":"018b66ab-c139-42f5-92c2-a62d9c95b732","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"},{"created_at":"2025-06-30T15:12:12.483517Z","id":"69ac7404-778c-4987-9894-1b9f944ab86d","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5d5c::/64","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}],"tags":[],"updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}' headers: Content-Length: - - "1049" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,11 +1136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cf26f350-e6a1-40c6-834a-d04ff022138f + - 20d6068e-f369-4cd8-92ae-ca8bd9cc69be status: 200 OK code: 200 - duration: 24.370544ms - - id: 22 + duration: 30.222333ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1104,8 +1155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/9607c05e-38c8-4b47-ad5a-735beb90bbef + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/83e0517b-d0dd-4479-aa01-cc9741f0dce9 method: GET response: proto: HTTP/2.0 @@ -1113,20 +1164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 509 + content_length: 495 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}' headers: Content-Length: - - "509" + - "495" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,11 +1185,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca494b4b-1ced-4a54-ad19-ccd03b884d80 + - 9ec0aef5-dda3-4bf6-850e-ee54402c6bee status: 200 OK code: 200 - duration: 87.892173ms - - id: 23 + duration: 26.974208ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1153,8 +1204,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: GET response: proto: HTTP/2.0 @@ -1162,20 +1213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-05-05T18:42:19.452134Z","dhcp_enabled":true,"id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","name":"tf-pn-great-chatterjee","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T18:42:19.452134Z","id":"727c4c6b-04d0-475b-bc89-d0bd35281902","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"},{"created_at":"2025-05-05T18:42:19.452134Z","id":"56891659-24cd-472f-874b-3116ebd40d2d","private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:f5b2::/64","updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}],"tags":[],"updated_at":"2025-05-05T18:42:19.452134Z","vpc_id":"a8bd5ad5-656b-418b-b9f8-23e98443b809"}' + body: '{"created_at":"2025-06-30T15:12:12.483517Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"da50beb2-d97f-4e14-8ead-60751924ee8d","name":"tf-pn-admiring-gould","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:12:12.483517Z","id":"018b66ab-c139-42f5-92c2-a62d9c95b732","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"},{"created_at":"2025-06-30T15:12:12.483517Z","id":"69ac7404-778c-4987-9894-1b9f944ab86d","private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5d5c::/64","updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}],"tags":[],"updated_at":"2025-06-30T15:12:12.483517Z","vpc_id":"7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee"}' headers: Content-Length: - - "1049" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,11 +1234,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16046d31-3794-42b2-912f-05c484d7612f + - 5ecad8af-e111-401f-957d-b191fd8cd8c2 status: 200 OK code: 200 - duration: 50.118498ms - - id: 24 + duration: 34.701ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1202,8 +1253,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,11 +1283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a8a68a1-eb6a-4643-ac3f-607ab1a2aba4 + - b4563225-ac76-48d4-8a8a-d020d2246c38 status: 200 OK code: 200 - duration: 80.561405ms - - id: 25 + duration: 72.136333ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1251,8 +1302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1260,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1243 + content_length: 1207 uncompressed: false - body: '{"private_network":[{"created_at":"2025-05-05T18:42:51.876667Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"ready","updated_at":"2025-05-05T18:42:54.331927Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-06-30T15:12:45.444082Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"ready","updated_at":"2025-06-30T15:12:48.016086Z"}],"total_count":1}' headers: Content-Length: - - "1243" + - "1207" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,11 +1332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89d892dd-f7e7-45ef-90d1-b51f11e378b4 + - 283f746d-f06f-45a7-9db0-998e3daafeeb status: 200 OK code: 200 - duration: 336.837396ms - - id: 26 + duration: 112.902375ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1300,8 +1351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=70faaf5f-f6e2-4095-9379-8956fa73f1c5&resource_type=lb_server + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=da50beb2-d97f-4e14-8ead-60751924ee8d&resource_type=lb_server method: GET response: proto: HTTP/2.0 @@ -1309,20 +1360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,11 +1381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05f16e0a-0d7e-4fc4-a3d4-24ab46395692 + - 0f615f04-17d6-442b-b7c6-389065a988cd status: 200 OK code: 200 - duration: 69.852549ms - - id: 27 + duration: 74.307125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1349,7 +1400,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: @@ -1358,20 +1409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:25 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,11 +1430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4de4779e-fe8a-4963-b224-ec86437a7e51 + - 8bcee65d-fe57-4aad-81df-9dc6f94f9229 status: 200 OK code: 200 - duration: 47.079696ms - - id: 28 + duration: 60.0075ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1398,7 +1449,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: @@ -1407,20 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 536 + content_length: 521 uncompressed: false - body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-05-05T18:42:20.537586Z","id":"9607c05e-38c8-4b47-ad5a-735beb90bbef","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"2780636f-3813-4aac-a071-441a65fc5424","mac_address":"02:00:00:18:3E:F9","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"727c4c6b-04d0-475b-bc89-d0bd35281902"},"tags":[],"updated_at":"2025-05-05T18:42:52.668001Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.7/22","created_at":"2025-06-30T15:12:14.368594Z","id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","mac_address":"02:00:00:1A:FF:8C","name":"test-lb-with-private-network-ipam","type":"lb_server"},"reverses":[],"source":{"subnet_id":"018b66ab-c139-42f5-92c2-a62d9c95b732"},"tags":[],"updated_at":"2025-06-30T15:12:46.362698Z","zone":null}],"total_count":1}' headers: Content-Length: - - "536" + - "521" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:26 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,11 +1479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d432642-9388-4fe0-b742-1eef079dac70 + - e63fac3d-c2bf-4262-ae86-c3df096701cb status: 200 OK code: 200 - duration: 59.192401ms - - id: 29 + duration: 59.066417ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1447,8 +1498,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1456,20 +1507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:26 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,11 +1528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5a814c9-09bf-450d-a636-4c139c90e559 + - 6d913e2b-8c5e-4d5d-a6a9-92bf5c11f34f status: 200 OK code: 200 - duration: 80.031549ms - - id: 30 + duration: 66.056166ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1496,8 +1547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/private-networks?order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1505,20 +1556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1243 + content_length: 1207 uncompressed: false - body: '{"private_network":[{"created_at":"2025-05-05T18:42:51.876667Z","dhcp_config":{"ip_id":"9607c05e-38c8-4b47-ad5a-735beb90bbef"},"ipam_ids":["9607c05e-38c8-4b47-ad5a-735beb90bbef"],"lb":{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"},"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","status":"ready","updated_at":"2025-05-05T18:42:54.331927Z"}],"total_count":1}' + body: '{"private_network":[{"created_at":"2025-06-30T15:12:45.444082Z","dhcp_config":{"ip_id":"83e0517b-d0dd-4479-aa01-cc9741f0dce9"},"ipam_ids":["83e0517b-d0dd-4479-aa01-cc9741f0dce9"],"lb":{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"},"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","status":"ready","updated_at":"2025-06-30T15:12:48.016086Z"}],"total_count":1}' headers: Content-Length: - - "1243" + - "1207" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:26 GMT + - Mon, 30 Jun 2025 15:13:17 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,11 +1577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fad9433-8ccf-44fb-8f41-495925107c0e + - b2bf0ab9-5bc0-4438-b801-85ba3ff3fd19 status: 200 OK code: 200 - duration: 161.802577ms - - id: 31 + duration: 125.699667ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1541,14 +1592,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5"}' + body: '{"private_network_id":"da50beb2-d97f-4e14-8ead-60751924ee8d"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424/detach-private-network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06/detach-private-network method: POST response: proto: HTTP/2.0 @@ -1565,9 +1616,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:27 GMT + - Mon, 30 Jun 2025 15:13:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,11 +1626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2623cb8e-c95f-4525-a0c0-249c65007ba0 + - 12264483-a376-4df7-8060-f46cf11a1f3b status: 204 No Content code: 204 - duration: 511.395002ms - - id: 32 + duration: 403.748959ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1594,8 +1645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1603,20 +1654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1119 + content_length: 1084 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","route_count":0,"ssl_compatibility_level":"ssl_compatibility_level_intermediate","status":"ready","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-05-05T18:42:24.215546Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:12:18.540679Z","zone":"fr-par-1"}' headers: Content-Length: - - "1119" + - "1084" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:27 GMT + - Mon, 30 Jun 2025 15:13:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,11 +1675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9da98fb9-e178-422a-91f0-5ef683033b29 + - a666e9dc-07ca-4c83-b9d2-f9aa62bfc6ed status: 200 OK code: 200 - duration: 81.568457ms - - id: 33 + duration: 64.498334ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1643,8 +1694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424?release_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -1661,9 +1712,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:27 GMT + - Mon, 30 Jun 2025 15:13:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,11 +1722,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c26ab30-94d2-4506-89a0-3b06b6618762 + - 8e9ee8db-099e-4da4-918c-b28a9313d944 status: 204 No Content code: 204 - duration: 429.634764ms - - id: 34 + duration: 321.102125ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1690,8 +1741,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1750,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1123 + content_length: 1088 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-05-05T18:42:21.020771Z","description":"","frontend_count":0,"id":"2780636f-3813-4aac-a071-441a65fc5424","instances":[{"created_at":"2025-05-05T18:30:54.775240Z","id":"c8395f65-f12a-4cbb-8a73-cef89579f7e2","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-05-05T18:42:54.051222Z","zone":"fr-par-1"}],"ip":[{"id":"02454f06-2654-48c3-b8bf-a91ab648113f","ip_address":"51.159.113.142","lb_id":"2780636f-3813-4aac-a071-441a65fc5424","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","reverse":"51-159-113-142.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"test-lb-with-private-network-ipam","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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-05-05T18:43:27.504102Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:12:14.612147Z","description":"","frontend_count":0,"id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","instances":[{"created_at":"2025-06-30T15:10:43.079918Z","id":"37203385-3d3e-4d4e-8c5d-23826ef2333b","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:12:47.701745Z","zone":"fr-par-1"}],"ip":[{"id":"740eeda8-89b6-4b66-95a6-f38285009834","ip_address":"51.15.221.147","lb_id":"7ede9c27-d2c2-41dc-9945-d35de57ebc06","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-221-147.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-06-30T15:13:18.438122Z","zone":"fr-par-1"}' headers: Content-Length: - - "1123" + - "1088" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:27 GMT + - Mon, 30 Jun 2025 15:13:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,11 +1771,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28675693-ebfb-40c0-8a77-0576d4da50d5 + - 5da8b8ca-8bd7-4ad5-bfde-ccf508e79052 status: 200 OK code: 200 - duration: 82.717377ms - - id: 35 + duration: 75.821583ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1739,8 +1790,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1759,9 +1810,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:57 GMT + - Mon, 30 Jun 2025 15:13:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,11 +1820,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d106734-408f-438a-baf5-7d436d40a39b + - 4ec2286d-bf20-43d0-9e2c-23419702b8eb status: 404 Not Found code: 404 - duration: 44.227248ms - - id: 36 + duration: 29.450375ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1788,8 +1839,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -1808,9 +1859,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:58 GMT + - Mon, 30 Jun 2025 15:13:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,11 +1869,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de402086-9c40-462e-8f16-c6f13213147e + - 623da2c4-6be8-4fc7-928c-b9dfc1e5c51e status: 404 Not Found code: 404 - duration: 62.393399ms - - id: 37 + duration: 52.768125ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1839,8 +1890,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/9607c05e-38c8-4b47-ad5a-735beb90bbef + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/83e0517b-d0dd-4479-aa01-cc9741f0dce9 method: DELETE response: proto: HTTP/2.0 @@ -1857,9 +1908,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:58 GMT + - Mon, 30 Jun 2025 15:13:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,11 +1918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa2de6c8-ebfe-448f-b478-f18c6528e27e + - 16ac9f2a-7271-4081-bba3-2dde557fe9a4 status: 204 No Content code: 204 - duration: 87.88159ms - - id: 38 + duration: 63.775958ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1886,8 +1937,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: DELETE response: proto: HTTP/2.0 @@ -1904,9 +1955,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:59 GMT + - Mon, 30 Jun 2025 15:13:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1914,11 +1965,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b033d2d9-4f75-4345-ad1a-bdda9c86e62f + - e52cc24a-eef8-40b2-9efb-2b5f307ea9de status: 204 No Content code: 204 - duration: 1.447385857s - - id: 39 + duration: 2.396481542s + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1933,8 +1984,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8bd5ad5-656b-418b-b9f8-23e98443b809 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7b3c827f-7cdf-4ea2-bd63-2bff2e1413ee method: DELETE response: proto: HTTP/2.0 @@ -1951,9 +2002,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:43:59 GMT + - Mon, 30 Jun 2025 15:13:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1961,11 +2012,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfd4b8c3-af8f-4fd6-a3b5-5795b6a3c33c + - 2e05ce26-cd51-4516-b7ba-1fffef2b8059 status: 204 No Content code: 204 - duration: 504.374193ms - - id: 40 + duration: 107.283375ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1980,8 +2031,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/2780636f-3813-4aac-a071-441a65fc5424 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/7ede9c27-d2c2-41dc-9945-d35de57ebc06 method: GET response: proto: HTTP/2.0 @@ -2000,9 +2051,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:44:00 GMT + - Mon, 30 Jun 2025 15:13:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2010,11 +2061,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22df3bf2-dd58-4919-a6c6-2f4d0493281e + - 01fac420-a6df-4d1e-805d-1ce29155c9a1 status: 404 Not Found code: 404 - duration: 67.986329ms - - id: 41 + duration: 26.097583ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2029,8 +2080,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/70faaf5f-f6e2-4095-9379-8956fa73f1c5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/da50beb2-d97f-4e14-8ead-60751924ee8d method: GET response: proto: HTTP/2.0 @@ -2040,7 +2091,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"70faaf5f-f6e2-4095-9379-8956fa73f1c5","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"da50beb2-d97f-4e14-8ead-60751924ee8d","type":"not_found"}' headers: Content-Length: - "136" @@ -2049,9 +2100,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 18:44:00 GMT + - Mon, 30 Jun 2025 15:13:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2059,7 +2110,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5fc8d35-142e-4fba-b7a1-99b5fab6dc11 + - 7806e2ec-c4e9-4c00-8f45-becd0f025545 status: 404 Not Found code: 404 - duration: 27.921474ms + duration: 24.4235ms diff --git a/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml b/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml index 5c5a71f72e..77a7fba9ea 100644 --- a/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml +++ b/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 150339 + content_length: 146415 uncompressed: false - body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per session for computation of normalized statement digests","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes used to store SQL statements","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_sql_text_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_insert_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Specifies the number of inserted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1147483647,"int_min":-1,"name":"autovacuum_vacuum_insert_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"50","description":"Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":50,"name":"autovacuum_vacuum_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"Specifies the timezone in which the pg_cron background worker should run.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"cron.timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Causes checkpoints and restartpoints to be logged in the server log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_checkpoints","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"on","description":"Logs long lock waits","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_lock_waits","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"5000","description":"Sets the minimum execution time above which all statements will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_min_duration_statement","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Logs each replication command","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"log_replication_commands","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Log the use of temporary files larger than this number of kilobytes","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_temp_files","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"5000","description":"Specifies the maximum number of statements tracked by the module.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":15000,"int_min":100,"name":"pg_stat_statements.max","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"top","description":"Controls which statements are counted by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track","property_type":"STRING","string_constraint":"^(top|all|none)$","unit":null},{"default_value":"on","description":"Controls whether utility commands are tracked by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track_utility","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2028-11-09T00:00:00Z","name":"PostgreSQL-16","version":"16"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' + body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per session for computation of normalized statement digests","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes used to store SQL statements","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_sql_text_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_insert_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Specifies the number of inserted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1147483647,"int_min":-1,"name":"autovacuum_vacuum_insert_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"50","description":"Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":50,"name":"autovacuum_vacuum_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"Specifies the timezone in which the pg_cron background worker should run.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"cron.timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Causes checkpoints and restartpoints to be logged in the server log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_checkpoints","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"on","description":"Logs long lock waits","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_lock_waits","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"5000","description":"Sets the minimum execution time above which all statements will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_min_duration_statement","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Logs each replication command","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"log_replication_commands","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Log the use of temporary files larger than this number of kilobytes","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_temp_files","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"5000","description":"Specifies the maximum number of statements tracked by the module.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":15000,"int_min":100,"name":"pg_stat_statements.max","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"top","description":"Controls which statements are counted by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track","property_type":"STRING","string_constraint":"^(top|all|none)$","unit":null},{"default_value":"on","description":"Controls whether utility commands are tracked by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track_utility","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2028-11-09T00:00:00Z","name":"PostgreSQL-16","version":"16"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' headers: Content-Length: - - "150339" + - "146415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:00:18 GMT + - Mon, 30 Jun 2025 15:11:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,28 +46,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd282710-babf-45f4-8ec9-13cbb2b7a11f + - cac35d6d-69dc-480e-a029-50ec81f6ee23 status: 200 OK code: 200 - duration: 308.829828ms + duration: 516.1035ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null}' + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:00:20 GMT + - Mon, 30 Jun 2025 15:11:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2b58ed5-2a27-4b77-b33d-6111aa9dbba6 + - d1b8487f-587c-44b9-8de5-355b62e435ee status: 200 OK code: 200 - duration: 640.227275ms + duration: 614.360375ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:00:20 GMT + - Mon, 30 Jun 2025 15:11:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437a1214-8c54-47d1-9c69-d126239139f9 + - 969f2186-d854-463e-b8e6-3af2358906e8 status: 200 OK code: 200 - duration: 26.919776ms + duration: 38.814625ms - id: 3 request: proto: HTTP/1.1 @@ -161,13 +161,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-rdb-private-network-update","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-rdb-private-network-update","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances method: POST response: @@ -176,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1091" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:00:21 GMT + - Mon, 30 Jun 2025 15:11:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9628e398-3f66-4896-ad15-6d52761725f5 + - 03386649-66e9-4b70-9790-6776d3d9a637 status: 200 OK code: 200 - duration: 1.53732182s + duration: 2.888122584s - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -225,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1091 + content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1091" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:00:22 GMT + - Mon, 30 Jun 2025 15:11:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b231fe6-352c-48b5-91b3-9d44a3b9b92e + - edcc558f-e767-49f6-a1bd-a55c87065e77 status: 200 OK code: 200 - duration: 325.30987ms + duration: 135.33775ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -274,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:53 GMT + - Mon, 30 Jun 2025 15:12:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9523e42b-8e15-4e64-b2b3-a5b44970ba44 + - 3d6571e8-07f4-4bdb-a6d8-ec76750f4c9f status: 200 OK code: 200 - duration: 210.374126ms + duration: 132.45275ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -323,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1055 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:53 GMT + - Mon, 30 Jun 2025 15:12:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42ddc7fa-32a0-4ed5-b635-a79c514aad39 + - 4e6bf778-5972-4024-baaf-73ec94237fcc status: 200 OK code: 200 - duration: 82.41863ms + duration: 336.149959ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df93d876-9d46-434b-9193-d7ef4f38f6da&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -372,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 557 + content_length: 1055 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-05-05T22:00:21.017710Z","id":"09d7c64e-811e-4b81-ace7-55cfa4862dd2","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:46:02","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:00:55.785263Z","zone":null}],"total_count":1}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "557" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:53 GMT + - Mon, 30 Jun 2025 15:13:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10e7f6d5-8966-4c17-9efd-e28d080af060 + - f341aa45-96e0-4238-8ab4-ef3ff16eeb75 status: 200 OK code: 200 - duration: 72.38689ms + duration: 97.025416ms - id: 8 request: proto: HTTP/1.1 @@ -412,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -421,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1044" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:53 GMT + - Mon, 30 Jun 2025 15:13:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a923230-c725-4337-bd7d-57ab3cc3d727 + - 5f77afc1-6a11-4f14-8d24-47fcfc3fe94b status: 200 OK code: 200 - duration: 70.061588ms + duration: 118.438417ms - id: 9 request: proto: HTTP/1.1 @@ -461,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -470,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:54 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - babf6f94-07f4-4f0b-b5b8-980345e8af31 + - ed5c90f8-0324-4a03-b7e1-a8a6461eb61f status: 200 OK code: 200 - duration: 917.242113ms + duration: 132.755916ms - id: 10 request: proto: HTTP/1.1 @@ -510,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -519,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1312 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1044" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:55 GMT + - Mon, 30 Jun 2025 15:14:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 999d55e9-e550-42a0-ba79-899a77b0103b + - 3faa4e68-f264-4d47-ae9f-eb0f82e4948b status: 200 OK code: 200 - duration: 30.588924ms + duration: 123.832833ms - id: 11 request: proto: HTTP/1.1 @@ -559,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -568,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1359" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:55 GMT + - Mon, 30 Jun 2025 15:14:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55648039-2180-40e5-9068-65ebef0041dc + - 808ac356-d827-4c9b-9cad-d19e3eed639c status: 200 OK code: 200 - duration: 141.962057ms + duration: 111.604667ms - id: 12 request: proto: HTTP/1.1 @@ -608,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -617,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 542 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1721" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:55 GMT + - Mon, 30 Jun 2025 15:14:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88f1ecc7-8cd3-4613-9268-48c5d53f3b54 + - 34c2d697-f4ff-4a99-b20a-fe62ee49c3ca status: 200 OK code: 200 - duration: 411.156044ms + duration: 54.007541ms - id: 13 request: proto: HTTP/1.1 @@ -657,8 +657,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df93d876-9d46-434b-9193-d7ef4f38f6da&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -666,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 557 + content_length: 1064 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-05-05T22:00:21.017710Z","id":"09d7c64e-811e-4b81-ace7-55cfa4862dd2","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:46:02","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:00:55.785263Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "557" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:55 GMT + - Mon, 30 Jun 2025 15:14:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ca9f04-b180-4c0e-be37-6b1b0b3818eb + - 5dcca8f2-8bf0-422e-9c5e-f8fa964f379c status: 200 OK code: 200 - duration: 100.216117ms + duration: 28.595916ms - id: 14 request: proto: HTTP/1.1 @@ -706,8 +706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -715,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1312 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1044" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:56 GMT + - Mon, 30 Jun 2025 15:14:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70b50503-e704-48c5-ad81-91c30f78a00e + - a9bfcf66-eb27-451d-82f6-e0b50e504eff status: 200 OK code: 200 - duration: 38.221301ms + duration: 282.210708ms - id: 15 request: proto: HTTP/1.1 @@ -755,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -764,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1359" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:56 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 591b6bd7-8bb7-4a06-bb0f-770d11963e92 + - ee1d6738-abb2-4c83-a2ca-d382f12b622c status: 200 OK code: 200 - duration: 149.531126ms + duration: 34.85925ms - id: 16 request: proto: HTTP/1.1 @@ -804,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -813,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1312 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:56 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f70b8dc5-bab1-4961-9efc-32a536386ed6 + - 8f78d77d-b50b-4f58-ae1b-0fa5284970e5 status: 200 OK code: 200 - duration: 152.779868ms + duration: 115.415834ms - id: 17 request: proto: HTTP/1.1 @@ -853,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df93d876-9d46-434b-9193-d7ef4f38f6da&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -862,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 557 + content_length: 1723 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-05-05T22:00:21.017710Z","id":"09d7c64e-811e-4b81-ace7-55cfa4862dd2","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:46:02","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:00:55.785263Z","zone":null}],"total_count":1}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "557" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:56 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,50 +883,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b21f06df-ac48-4452-9e11-d4f2efbfa677 + - 5e956672-31bb-40c3-b123-581b64246484 status: 200 OK code: 200 - duration: 68.593489ms + duration: 88.116208ms - id: 18 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 113 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_second_private_network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 542 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1052" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:57 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -934,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8927ec69-8f49-46b4-8b26-7d7b8ef5868c + - 9a5492b6-c7d2-4777-83b0-b29cdc8864f5 status: 200 OK code: 200 - duration: 1.262953583s + duration: 66.922333ms - id: 19 request: proto: HTTP/1.1 @@ -953,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -962,20 +960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1052" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:58 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -983,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7738f1f8-06d9-4361-ab21-dc6e95848788 + - a6926f4e-9dc9-4eb0-b9af-5f9390068317 status: 200 OK code: 200 - duration: 83.664793ms + duration: 33.627458ms - id: 20 request: proto: HTTP/1.1 @@ -1002,8 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1011,20 +1009,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:58 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1032,10 +1030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 464f19fa-fabb-41b4-81bf-a968e845acb6 + - 4df45a12-0bcb-4f59-8beb-58f35799ec12 status: 200 OK code: 200 - duration: 204.729509ms + duration: 137.896541ms - id: 21 request: proto: HTTP/1.1 @@ -1051,8 +1049,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -1060,20 +1058,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1359" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:58 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1081,50 +1079,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a71bca6-24d7-4949-b68a-0b383ee298cc + - a24d72d8-b0e1-4da6-839c-cb817496515e status: 200 OK code: 200 - duration: 114.155232ms + duration: 97.00325ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 542 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1359" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:59 GMT + - Mon, 30 Jun 2025 15:14:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,48 +1128,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca97ddbb-ad48-48d7-93d6-711cbd8ca68c + - a6c4a13f-d5bf-4f0a-8e62-5b4ad1564b14 status: 200 OK code: 200 - duration: 395.19773ms + duration: 44.711875ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 155 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"my_second_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1071 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1359" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:02:59 GMT + - Mon, 30 Jun 2025 15:14:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1179,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3855e1b1-fce7-41a7-bd78-f15ea8759584 + - ea8f0c7b-b386-45f2-b1e8-044941157a0d status: 200 OK code: 200 - duration: 504.911186ms + duration: 632.156208ms - id: 24 request: proto: HTTP/1.1 @@ -1200,27 +1198,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/0b29a79c-2981-42d2-9f34-44ce8a354edc - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1071 uncompressed: false - body: "" + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: + Content-Length: + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:03:00 GMT + - Mon, 30 Jun 2025 15:14:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,10 +1228,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c79e46a9-525b-4862-90f5-c308132df520 - status: 204 No Content - code: 204 - duration: 513.493882ms + - 8662aa5d-80c1-4828-a9db-46e8e44fa010 + status: 200 OK + code: 200 + duration: 31.07225ms - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1256,20 +1256,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1365 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"0b29a79c-2981-42d2-9f34-44ce8a354edc","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1365" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:03:00 GMT + - Mon, 30 Jun 2025 15:14:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,10 +1277,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7acec9cc-ccc2-4079-aa62-db78bfd7f535 + - 1c7349c8-9540-43a6-a986-23b227f4d717 status: 200 OK code: 200 - duration: 135.315124ms + duration: 104.33325ms - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1305,20 +1305,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1111" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:03:30 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,50 +1326,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0377b7a6-1a59-4b8f-89cd-84089c662f83 + - 5cb3911a-f2b8-4615-8856-bde56df6681b status: 200 OK code: 200 - duration: 575.958522ms + duration: 134.759417ms - id: 27 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 116 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","ipam_config":{}}}}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/endpoints - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 250 + content_length: 1312 uncompressed: false - body: '{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "250" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:03:32 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93e9656a-943d-428b-9c34-1d5d28908ed9 + - 8a4cf309-bb03-428b-9e34-eba0bf9d7f4b status: 200 OK code: 200 - duration: 1.022729083s + duration: 171.870375ms - id: 28 request: proto: HTTP/1.1 @@ -1396,8 +1396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1405,20 +1405,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1368 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1368" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:03:32 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1363fb04-ddd2-41d8-9d36-d4518766a6a4 + - da232772-be63-4d43-a7d1-ac39ff3d8186 status: 200 OK code: 200 - duration: 118.44467ms + duration: 179.777792ms - id: 29 request: proto: HTTP/1.1 @@ -1445,29 +1445,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/097047a6-a8b0-4610-b5c0-7a599084b266 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 0 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "1361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:02 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1473,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53b58c60-4d52-4994-8c21-177984821f11 - status: 200 OK - code: 200 - duration: 599.332071ms + - d74ca40b-7a86-4c1e-802d-5541c06b6fe7 + status: 204 No Content + code: 204 + duration: 298.454791ms - id: 30 request: proto: HTTP/1.1 @@ -1494,8 +1492,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1501,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1318 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:03 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1522,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c866f87c-e933-4c91-add9-f83f5671b2b2 + - aa879db0-f519-4a7c-9356-a0daa0dcf344 status: 200 OK code: 200 - duration: 159.474757ms + duration: 145.310333ms - id: 31 request: proto: HTTP/1.1 @@ -1543,8 +1541,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b95d993b-d835-4b70-ab4f-700b07518d5f&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1552,20 +1550,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 1069 uncompressed: false - body: '{"ips":[{"address":"172.16.24.2/22","created_at":"2025-05-05T22:03:31.835939Z","id":"f3652b6d-a135-4cdb-ba54-e81a77b6a5ac","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:23:F0","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"58c905df-56eb-4355-a94e-e21c5560fc38"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:03:32.449995Z","zone":null}],"total_count":1}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "558" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:03 GMT + - Mon, 30 Jun 2025 15:15:16 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,48 +1571,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60855214-eaac-4f1d-aea7-bea5d13f4f6f + - 8246fb84-0bc8-4ce0-b43b-433b29a6b100 status: 200 OK code: 200 - duration: 91.952395ms + duration: 131.3485ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 116 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"endpoint_spec":{"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","ipam_config":{}}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 243 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}' headers: Content-Length: - - "1044" + - "243" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:03 GMT + - Mon, 30 Jun 2025 15:15:18 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f50beac2-99da-4e0d-b3bc-b202d17cd994 + - a33191a9-5653-4dae-ae3d-7e248a867e26 status: 200 OK code: 200 - duration: 66.027904ms + duration: 2.917245792s - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1641,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1650,20 +1650,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1319 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:03 GMT + - Mon, 30 Jun 2025 15:15:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 904a2cf6-a6ef-4355-b561-beb72883680d + - f1735708-37ba-432b-a3a6-09e2f97f42ab status: 200 OK code: 200 - duration: 23.309555ms + duration: 174.318042ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1690,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1699,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1361" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:03 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2909b2a4-fc8a-445d-a9bd-0e5f747b25b0 + - daa5bc60-a879-45e9-ab4b-924220062bb4 status: 200 OK code: 200 - duration: 737.386019ms + duration: 181.79925ms - id: 35 request: proto: HTTP/1.1 @@ -1739,8 +1739,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -1748,20 +1748,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1723 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1044" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:04 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1909ed11-9bf7-41bc-b98f-3ca4df74a7dd + - cfbe2665-b8b4-4365-8aaf-22ef51aeb89c status: 200 OK code: 200 - duration: 44.211854ms + duration: 88.890542ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1788,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -1797,20 +1797,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 542 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1052" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:04 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb4b9e72-170b-4831-9259-f6debd1bf5e9 + - 6b4542bc-bd8f-47ba-9455-556f45506b6d status: 200 OK code: 200 - duration: 75.083877ms + duration: 159.890167ms - id: 37 request: proto: HTTP/1.1 @@ -1837,8 +1837,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -1846,20 +1846,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:04 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,10 +1867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cd1d3ca-d512-4f57-8df9-145c211241b1 + - f60b4f70-6c6e-4827-b8e2-f7a553846144 status: 200 OK code: 200 - duration: 111.661952ms + duration: 29.363833ms - id: 38 request: proto: HTTP/1.1 @@ -1886,8 +1886,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -1895,20 +1895,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1071 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1721" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:04 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,10 +1916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0bfc717-ca32-451f-b535-baf973942529 + - e9214d29-8ddb-4210-9dfd-42dccec75f32 status: 200 OK code: 200 - duration: 137.852981ms + duration: 26.189667ms - id: 39 request: proto: HTTP/1.1 @@ -1935,8 +1935,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b95d993b-d835-4b70-ab4f-700b07518d5f&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -1944,20 +1944,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 1312 uncompressed: false - body: '{"ips":[{"address":"172.16.24.2/22","created_at":"2025-05-05T22:03:31.835939Z","id":"f3652b6d-a135-4cdb-ba54-e81a77b6a5ac","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:23:F0","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"58c905df-56eb-4355-a94e-e21c5560fc38"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:03:32.449995Z","zone":null}],"total_count":1}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "558" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:05 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,10 +1965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4497c8a4-797c-47c7-8493-4aa905e0039e + - de98b97c-8037-4768-bcad-a5f2daefceff status: 200 OK code: 200 - duration: 93.18926ms + duration: 120.307958ms - id: 40 request: proto: HTTP/1.1 @@ -1984,8 +1984,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -1993,20 +1993,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:05 GMT + - Mon, 30 Jun 2025 15:15:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2014,10 +2014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49c67aa1-0d5b-49d4-84be-667206381d5b + - 83fb91cc-6ba3-49a6-bf3e-a28fdd5ceceb status: 200 OK code: 200 - duration: 41.597961ms + duration: 30.72875ms - id: 41 request: proto: HTTP/1.1 @@ -2033,8 +2033,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -2042,20 +2042,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1071 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1052" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:05 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2063,10 +2063,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd6c8452-b5fa-47f4-a547-0e67124f4c7d + - f07d4569-e631-46bc-932b-47b1cd3cf945 status: 200 OK code: 200 - duration: 59.57753ms + duration: 118.265125ms - id: 42 request: proto: HTTP/1.1 @@ -2082,8 +2082,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2091,20 +2091,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1361" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:05 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2112,10 +2112,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b813873f-2fb7-4fd6-a5db-b2bb7e47643e + - 1c7b1364-5473-4f04-9da6-e8ad8b8dfca2 status: 200 OK code: 200 - duration: 164.839039ms + duration: 132.13ms - id: 43 request: proto: HTTP/1.1 @@ -2131,8 +2131,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -2140,20 +2140,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1721" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:05 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2161,10 +2161,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebf110bc-8b14-4533-aa48-bc77eb17fcc0 + - 075d4073-9212-4eb9-9862-a8f40038a7bd status: 200 OK code: 200 - duration: 106.935944ms + duration: 93.174333ms - id: 44 request: proto: HTTP/1.1 @@ -2180,8 +2180,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b95d993b-d835-4b70-ab4f-700b07518d5f&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -2189,20 +2189,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 558 + content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.24.2/22","created_at":"2025-05-05T22:03:31.835939Z","id":"f3652b6d-a135-4cdb-ba54-e81a77b6a5ac","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:10:23:F0","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"58c905df-56eb-4355-a94e-e21c5560fc38"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:03:32.449995Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' headers: Content-Length: - - "558" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:06 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2210,10 +2210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97abdf41-63b2-4553-88cf-8c9dcff400fa + - bebb1c55-61f5-4716-acd5-de8ddce636c3 status: 200 OK code: 200 - duration: 73.61113ms + duration: 65.187291ms - id: 45 request: proto: HTTP/1.1 @@ -2229,8 +2229,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -2238,20 +2238,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:06 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2259,10 +2259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46e9ea9a-033c-4153-bc85-fe76e7b38d4f + - a459e3c9-7b63-4932-a58c-505fb6d4bc9f status: 200 OK code: 200 - duration: 119.984992ms + duration: 35.000667ms - id: 46 request: proto: HTTP/1.1 @@ -2278,8 +2278,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -2287,20 +2287,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1071 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:07 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2308,50 +2308,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ad3729b-5c16-454f-b989-61bc3acdd330 + - e83091b6-f613-454a-96c6-1e8bed8f8884 status: 200 OK code: 200 - duration: 135.941082ms + duration: 34.986833ms - id: 47 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1361" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:07 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2359,10 +2357,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d00d1ce2-652a-4574-8321-7947cd57497a + - b812746c-2093-4a69-8ec3-c576ae5198d7 status: 200 OK code: 200 - duration: 155.3526ms + duration: 125.5965ms - id: 48 request: proto: HTTP/1.1 @@ -2378,8 +2376,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -2387,20 +2385,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1361" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:07 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2408,10 +2406,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53bc0c99-598f-46d6-80bc-bb5db5e0470c + - 3a91f812-e5d6-4141-8286-ac67dabb9b2c status: 200 OK code: 200 - duration: 158.603215ms + duration: 123.371833ms - id: 49 request: proto: HTTP/1.1 @@ -2427,27 +2425,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/9fede7e9-b103-41eb-9057-1171550b2c3f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 542 uncompressed: false - body: "" + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' headers: + Content-Length: + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:07 GMT + - Mon, 30 Jun 2025 15:15:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2455,10 +2455,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f00ae57a-9e68-472d-b978-bf9c63b49736 - status: 204 No Content - code: 204 - duration: 146.236886ms + - c5dcc56f-60b1-4dcf-9412-d71cfc9681ae + status: 200 OK + code: 200 + duration: 47.862ms - id: 50 request: proto: HTTP/1.1 @@ -2474,8 +2474,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2483,20 +2483,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1367 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"9fede7e9-b103-41eb-9057-1171550b2c3f","ip":"172.16.24.2","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"ipam","service_ip":"172.16.24.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1367" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:07 GMT + - Mon, 30 Jun 2025 15:15:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2504,10 +2504,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82de5b3b-d68f-4185-bee1-2bed4aaa3c9f + - 64ec324e-37a9-43b1-8617-7f14c7246b57 status: 200 OK code: 200 - duration: 412.974108ms + duration: 653.151666ms - id: 51 request: proto: HTTP/1.1 @@ -2523,8 +2523,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2532,20 +2532,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1111" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:38 GMT + - Mon, 30 Jun 2025 15:15:51 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2553,50 +2553,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72fb3497-400f-4f44-b016-f2a804ef303f + - b3c87bf8-ed11-43ea-86cb-32bdca5d0e28 status: 200 OK code: 200 - duration: 117.85316ms + duration: 172.185542ms - id: 52 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 129 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","service_ip":"172.16.24.4/22"}}}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/endpoints - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 252 + content_length: 1312 uncompressed: false - body: '{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "252" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:38 GMT + - Mon, 30 Jun 2025 15:15:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,10 +2604,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4795655d-0588-425b-aa96-e5b4536cd671 + - 4bdd58f5-1f3a-4e47-937d-d05169e3fea3 status: 200 OK code: 200 - duration: 508.086735ms + duration: 148.648583ms - id: 53 request: proto: HTTP/1.1 @@ -2623,8 +2623,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2632,20 +2632,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1370 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1370" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:04:38 GMT + - Mon, 30 Jun 2025 15:15:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,10 +2653,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c490c828-a762-47a6-9fd3-c5ea9ae3c4cb + - fc009485-f77d-40ac-a2e2-9eb913e20eaf status: 200 OK code: 200 - duration: 598.133701ms + duration: 146.258958ms - id: 54 request: proto: HTTP/1.1 @@ -2672,29 +2672,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/d0ace651-29cb-40ac-aeeb-4c7539d8be8a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 0 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "1363" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:09 GMT + - Mon, 30 Jun 2025 15:15:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2702,10 +2700,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 626d8156-ab08-41da-900a-af6288bd389f - status: 200 OK - code: 200 - duration: 250.208246ms + - caf9ee59-c211-4098-8b59-cbff64c3cb4b + status: 204 No Content + code: 204 + duration: 550.000625ms - id: 55 request: proto: HTTP/1.1 @@ -2721,8 +2719,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2730,20 +2728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1318 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:09 GMT + - Mon, 30 Jun 2025 15:15:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2751,10 +2749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19c9c30f-f3fe-4d29-9769-7f67e59497bf + - 40436901-7f3a-46e8-924d-f69896b1ceec status: 200 OK code: 200 - duration: 86.891779ms + duration: 115.918125ms - id: 56 request: proto: HTTP/1.1 @@ -2770,8 +2768,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2779,20 +2777,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:09 GMT + - Mon, 30 Jun 2025 15:16:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2800,48 +2798,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0104aa94-4a0d-4bcf-a704-7f75f06b7768 + - 032c8463-1794-42de-94ee-6c2c2af37958 status: 200 OK code: 200 - duration: 41.235141ms + duration: 134.160916ms - id: 57 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 129 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"endpoint_spec":{"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","service_ip":"172.16.12.4/22"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 245 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}' headers: Content-Length: - - "1363" + - "245" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:09 GMT + - Mon, 30 Jun 2025 15:16:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2849,10 +2849,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce1bc2a1-2878-4150-a2a2-bac94aa347dc + - 6494064e-9d25-4819-96f8-11e9f892a1f0 status: 200 OK code: 200 - duration: 149.913055ms + duration: 675.360166ms - id: 58 request: proto: HTTP/1.1 @@ -2868,8 +2868,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2877,20 +2877,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1321 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:10 GMT + - Mon, 30 Jun 2025 15:16:23 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2898,10 +2898,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09e59b2c-bddf-4f21-8354-2594e3834faf + - 16b7f486-aa31-4157-b255-a03d13f94d9b status: 200 OK code: 200 - duration: 52.217039ms + duration: 111.719709ms - id: 59 request: proto: HTTP/1.1 @@ -2917,8 +2917,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -2926,20 +2926,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1314 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1044" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:10 GMT + - Mon, 30 Jun 2025 15:16:53 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2947,10 +2947,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5464f4c8-bfdb-4743-9c49-130976fd8ceb + - db868bd4-9ee2-4fb3-9087-f57700947653 status: 200 OK code: 200 - duration: 54.320638ms + duration: 170.755ms - id: 60 request: proto: HTTP/1.1 @@ -2966,8 +2966,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -2975,20 +2975,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1363" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:10 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2996,10 +2996,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 518c6048-0275-4171-a715-2698f2c02a30 + - d8b7181c-7de0-4fbc-9d95-8ab34da135a7 status: 200 OK code: 200 - duration: 122.046259ms + duration: 117.274834ms - id: 61 request: proto: HTTP/1.1 @@ -3015,8 +3015,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -3024,20 +3024,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1071 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1721" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:10 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3045,10 +3045,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ed6debb-28f8-4663-839e-55291130e507 + - f6d9d808-f1b8-4c9c-ac7d-451fd18f8ae4 status: 200 OK code: 200 - duration: 86.308077ms + duration: 29.381ms - id: 62 request: proto: HTTP/1.1 @@ -3064,8 +3064,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3073,20 +3073,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1314 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:11 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3094,10 +3094,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d945b016-4b1f-4d73-adb3-44b1894789f0 + - b0fe6d28-3782-4bf5-9ad1-a28c6078afcc status: 200 OK code: 200 - duration: 33.184732ms + duration: 144.99475ms - id: 63 request: proto: HTTP/1.1 @@ -3113,8 +3113,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -3122,20 +3122,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:11 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3143,10 +3143,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8f2c233-4517-4830-90f5-680657d9d6e3 + - f248f9e4-661d-4fb0-bd89-847d6a1cb65b status: 200 OK code: 200 - duration: 73.923443ms + duration: 24.46575ms - id: 64 request: proto: HTTP/1.1 @@ -3162,8 +3162,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -3171,20 +3171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1071 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1363" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:11 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3192,10 +3192,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20e2dcd8-2ca2-40df-8115-edacde759436 + - 7850a1fd-e55b-4272-bd1e-fad8a07096b3 status: 200 OK code: 200 - duration: 158.015221ms + duration: 24.454084ms - id: 65 request: proto: HTTP/1.1 @@ -3211,8 +3211,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3220,20 +3220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1314 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:11 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3241,10 +3241,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12e4a840-223b-4809-b54a-b9c15d8e220d + - 7ec2dc19-1dce-469b-91fb-780f2c085d4a status: 200 OK code: 200 - duration: 77.76845ms + duration: 148.609792ms - id: 66 request: proto: HTTP/1.1 @@ -3260,8 +3260,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -3269,20 +3269,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1363" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:12 GMT + - Mon, 30 Jun 2025 15:16:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3290,10 +3290,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 113f10d4-1d9e-4ae5-9f13-ea300a83e7f9 + - a86ff611-f9e1-40d2-9745-5b6850a2efc9 status: 200 OK code: 200 - duration: 305.724801ms + duration: 96.187042ms - id: 67 request: proto: HTTP/1.1 @@ -3309,8 +3309,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -3318,20 +3318,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1071 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1363" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:12 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3339,50 +3339,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 576c576d-d8f7-4a48-b5a6-fcffa498d461 + - a8f0055d-a472-4d73-8840-576eb92bf96d status: 200 OK code: 200 - duration: 119.565575ms + duration: 27.347875ms - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1363" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:12 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3390,10 +3388,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2c6c509-0fff-4ece-b78d-5836e8036711 + - 292c7aeb-2cc4-4205-b66f-cee2fd488ad4 status: 200 OK code: 200 - duration: 102.267233ms + duration: 68.921792ms - id: 69 request: proto: HTTP/1.1 @@ -3409,8 +3407,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3418,20 +3416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1363 + content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1363" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:13 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3439,10 +3437,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8625f821-79bc-4d05-9bfc-eb3bb12e9bfd + - f7935421-1bd8-492b-95c8-1270a293d909 status: 200 OK code: 200 - duration: 133.658897ms + duration: 138.11275ms - id: 70 request: proto: HTTP/1.1 @@ -3458,27 +3456,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/072a4cb6-c705-43a3-9030-c873ecdcad68 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1723 uncompressed: false - body: "" + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: + Content-Length: + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:13 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3486,10 +3486,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7bf5d76-7e12-4db8-8422-0d88f196f279 - status: 204 No Content - code: 204 - duration: 203.093036ms + - 9fa96272-f012-4216-909a-32eae1a8c94f + status: 200 OK + code: 200 + duration: 105.484916ms - id: 71 request: proto: HTTP/1.1 @@ -3505,8 +3505,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3514,20 +3514,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1369 + content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"072a4cb6-c705-43a3-9030-c873ecdcad68","ip":"172.16.24.4","name":null,"port":5432,"private_network":{"private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","provisioning_mode":"static","service_ip":"172.16.24.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1369" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:13 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3535,10 +3535,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e8bb452-5ac6-4c50-9daf-a0165672dc66 + - c6869aa7-e09b-4ad8-a4d8-f6c0e171e863 status: 200 OK code: 200 - duration: 143.548239ms + duration: 127.99125ms - id: 72 request: proto: HTTP/1.1 @@ -3554,8 +3554,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3563,20 +3563,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1111" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:43 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3584,50 +3584,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 445a4210-36a4-4e2d-b861-d70ccfdbc5eb + - beb0127e-f4e2-47b2-8dd8-754f4bc2ccbb status: 200 OK code: 200 - duration: 225.498167ms + duration: 114.241167ms - id: 73 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 128 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","service_ip":"172.16.0.4/22"}}}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/endpoints - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 250 + content_length: 1314 uncompressed: false - body: '{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "250" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:44 GMT + - Mon, 30 Jun 2025 15:16:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3635,10 +3635,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ff8e6064-154e-45bf-9fad-4b0324990a91 + - 62abfcc6-340b-456e-be24-2c0501bfd138 status: 200 OK code: 200 - duration: 606.442154ms + duration: 184.526584ms - id: 74 request: proto: HTTP/1.1 @@ -3654,8 +3654,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3663,20 +3663,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1368 + content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1368" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:05:44 GMT + - Mon, 30 Jun 2025 15:16:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3684,10 +3684,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 771e33ea-995c-4176-9e21-21ffc30ac7f3 + - 4559bd79-2fa4-419a-8300-a894abd33dab status: 200 OK code: 200 - duration: 256.283777ms + duration: 139.055917ms - id: 75 request: proto: HTTP/1.1 @@ -3703,29 +3703,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/16b104b8-a9be-49e4-a7ac-42098c4afec9 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 0 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: "" headers: - Content-Length: - - "1361" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:14 GMT + - Mon, 30 Jun 2025 15:16:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3733,10 +3731,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8e1fb65-322f-444f-b607-4a857fd1673d - status: 200 OK - code: 200 - duration: 136.693725ms + - 6a769462-1b6b-4839-8ed2-cee481841af4 + status: 204 No Content + code: 204 + duration: 152.918458ms - id: 76 request: proto: HTTP/1.1 @@ -3752,8 +3750,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3761,20 +3759,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1320 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1721" + - "1320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:14 GMT + - Mon, 30 Jun 2025 15:16:56 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3782,10 +3780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 218c9d14-513c-45bd-aac0-6c3ceda3d3e3 + - e2ea6e65-5750-4b6f-90e6-7ad7522808a1 status: 200 OK code: 200 - duration: 116.409795ms + duration: 133.74325ms - id: 77 request: proto: HTTP/1.1 @@ -3801,8 +3799,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3810,20 +3808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1044" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:14 GMT + - Mon, 30 Jun 2025 15:17:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3831,48 +3829,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2f16ca6-6c7d-4772-82d1-91ed01cd1acc + - e8d1708c-62f5-44f3-83be-91dbe74bc7bf status: 200 OK code: 200 - duration: 28.39774ms + duration: 119.009958ms - id: 78 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 129 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"endpoint_spec":{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","service_ip":"172.16.20.4/22"}}}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 245 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}' headers: Content-Length: - - "1052" + - "245" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:15 GMT + - Mon, 30 Jun 2025 15:17:26 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3880,10 +3880,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f497a913-5780-47f4-b8b1-e5c683d63752 + - aa3a5c94-b2f4-4fcc-af9c-6684df8db587 status: 200 OK code: 200 - duration: 92.879547ms + duration: 464.216708ms - id: 79 request: proto: HTTP/1.1 @@ -3899,8 +3899,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3908,20 +3908,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1321 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1361" + - "1321" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:15 GMT + - Mon, 30 Jun 2025 15:17:27 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3929,10 +3929,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3be1cb2a-b1aa-46bb-81ed-3dc912e23af4 + - 1cf1132a-f801-4afa-92a6-4df40e257c00 status: 200 OK code: 200 - duration: 120.350472ms + duration: 140.284834ms - id: 80 request: proto: HTTP/1.1 @@ -3948,8 +3948,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -3957,20 +3957,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1314 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:15 GMT + - Mon, 30 Jun 2025 15:17:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3978,10 +3978,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a11bf22c-2499-4d8a-bb69-76b88788db79 + - a78219b6-3b09-48d9-a126-f5d0e303ba19 status: 200 OK code: 200 - duration: 28.764686ms + duration: 153.54475ms - id: 81 request: proto: HTTP/1.1 @@ -3997,8 +3997,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -4006,20 +4006,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1723 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1044" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:15 GMT + - Mon, 30 Jun 2025 15:17:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4027,10 +4027,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 349ca9fe-bbe6-4d0e-a0de-9b2159448f81 + - f8cc0f5c-1d74-4d10-b574-fd9900448bc7 status: 200 OK code: 200 - duration: 69.51542ms + duration: 105.336292ms - id: 82 request: proto: HTTP/1.1 @@ -4046,8 +4046,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -4055,20 +4055,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:16 GMT + - Mon, 30 Jun 2025 15:17:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4076,10 +4076,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89ec28e7-ef5d-4900-bcbd-687ab3ca9c61 + - 0887e8b2-897e-4fef-a8a3-e6270a5e0fe0 status: 200 OK code: 200 - duration: 148.440194ms + duration: 44.549125ms - id: 83 request: proto: HTTP/1.1 @@ -4095,8 +4095,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -4104,20 +4104,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 109 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"message":"upstream connect error or disconnect/reset before headers. reset reason: connection termination"}' headers: Content-Length: - - "1721" + - "109" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:16 GMT + - Mon, 30 Jun 2025 15:17:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4125,10 +4125,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a81c988-2215-4cc6-a668-224dd6a29574 - status: 200 OK - code: 200 - duration: 99.989076ms + - 102f0e78-6446-441e-8f5a-4b795abd5e61 + status: 503 Service Unavailable + code: 503 + duration: 1.652637166s - id: 84 request: proto: HTTP/1.1 @@ -4144,8 +4144,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -4153,20 +4153,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1071 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:16 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4174,10 +4174,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 75e97939-e328-4312-ba54-9e22d9766529 + - 475f4c76-75ba-4b63-b17c-19df7dfe17fd status: 200 OK code: 200 - duration: 37.789721ms + duration: 25.531583ms - id: 85 request: proto: HTTP/1.1 @@ -4193,8 +4193,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4202,20 +4202,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1052 + content_length: 1314 uncompressed: false - body: '{"created_at":"2025-05-05T22:02:57.377832Z","dhcp_enabled":true,"id":"b95d993b-d835-4b70-ab4f-700b07518d5f","name":"my_second_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:02:57.377832Z","id":"58c905df-56eb-4355-a94e-e21c5560fc38","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.24.0/22","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:02:57.377832Z","id":"08b32502-6403-4b22-845a-a17ab7d2d13f","private_network_id":"b95d993b-d835-4b70-ab4f-700b07518d5f","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:24b6::/64","updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:02:57.377832Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1052" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:16 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4223,10 +4223,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ab28843-22e0-4caa-9783-27d2cf0fa8a1 + - 70706c44-b2b8-4219-a98e-5f9c16073446 status: 200 OK code: 200 - duration: 58.181444ms + duration: 131.027167ms - id: 86 request: proto: HTTP/1.1 @@ -4242,8 +4242,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -4251,20 +4251,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:16 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4272,10 +4272,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d48f40a-275f-4b0d-9ce1-4f00aa939e62 + - be3ddc8a-577d-4ec0-978f-db4da9e829c0 status: 200 OK code: 200 - duration: 129.010713ms + duration: 30.432125ms - id: 87 request: proto: HTTP/1.1 @@ -4291,8 +4291,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 method: GET response: proto: HTTP/2.0 @@ -4300,20 +4300,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1071 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1721" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:17 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4321,10 +4321,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4ed2306-b87a-439a-b037-184e71070ca0 + - 458d361c-bb3e-4179-9fbb-2ff75ca4f1db status: 200 OK code: 200 - duration: 85.2261ms + duration: 62.924541ms - id: 88 request: proto: HTTP/1.1 @@ -4340,8 +4340,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4349,20 +4349,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1361" + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:17 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4370,10 +4370,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a1a8ca2b-8245-48e6-a1cb-9c43ac67f538 + - 72ea792b-99d8-416b-bce9-5838b3ac57f4 status: 200 OK code: 200 - duration: 325.986726ms + duration: 132.449375ms - id: 89 request: proto: HTTP/1.1 @@ -4389,8 +4389,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -4398,20 +4398,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1723 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1361" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:18 GMT + - Mon, 30 Jun 2025 15:18:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4419,50 +4419,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9483476f-4210-488b-bbfe-6702401d2862 + - 67fd641d-5e1e-4290-849b-95f4147e4350 status: 200 OK code: 200 - duration: 125.201994ms + duration: 94.27125ms - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1071 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:18 GMT + - Mon, 30 Jun 2025 15:18:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4470,10 +4468,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec2ea3ec-91d5-4907-b07a-57f14da77035 + - 55c3edfd-2c5e-421a-b6d1-5dbf7d693f33 status: 200 OK code: 200 - duration: 195.242537ms + duration: 117.256291ms - id: 91 request: proto: HTTP/1.1 @@ -4489,8 +4487,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -4498,20 +4496,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1361 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1361" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:18 GMT + - Mon, 30 Jun 2025 15:18:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4519,10 +4517,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8a59bb2-b977-4040-aff3-b70cac57e3bd + - 3fc37604-1741-4178-adf8-bd989327f12c status: 200 OK code: 200 - duration: 117.523961ms + duration: 117.413542ms - id: 92 request: proto: HTTP/1.1 @@ -4538,27 +4536,127 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/f16b08af-fd76-40ee-b896-a9abe7dddf41 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} + content_length: 1314 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1314" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8794a88c-3a97-47c2-a2ce-5fa37990a6f4 + status: 200 OK + code: 200 + duration: 146.219916ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1723 uncompressed: false + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + headers: + Content-Length: + - "1723" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fae8e3b-793b-4639-abdc-572165717d16 + status: 200 OK + code: 200 + duration: 90.418083ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" body: "" + form: {} headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1314 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1314" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:18 GMT + - Mon, 30 Jun 2025 15:18:02 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4566,11 +4664,160 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03fdf9a1-fd26-4746-a2d4-1b775c946931 - status: 204 No Content - code: 204 - duration: 382.099348ms - - id: 93 + - c5a483c5-4e7b-4c4c-a0a3-94b7bbeb687a + status: 200 OK + code: 200 + duration: 143.215708ms + - id: 95 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1314 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1314" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:02 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eeb49817-04a3-4a3b-8060-0626a793914c + status: 200 OK + code: 200 + duration: 147.221542ms + - id: 96 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1314 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1314" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 03163d8b-2215-4fd7-895c-e2ab168ff6b4 + status: 200 OK + code: 200 + duration: 171.863375ms + - id: 97 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1314 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1314" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0ffd3000-291f-4994-bb63-21cb621d7152 + status: 200 OK + code: 200 + duration: 104.269958ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4585,8 +4832,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b95d993b-d835-4b70-ab4f-700b07518d5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/715df91b-750c-4a62-a51f-dfb27237f8c9 method: DELETE response: proto: HTTP/2.0 @@ -4603,9 +4850,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:19 GMT + - Mon, 30 Jun 2025 15:18:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4613,11 +4860,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ceede4f-3880-4d03-9422-cbc755d1a3d4 + - 86a33886-7f90-4860-8054-554d6e0d6394 status: 204 No Content code: 204 - duration: 1.677697894s - - id: 94 + duration: 146.723333ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4632,8 +4879,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4641,20 +4888,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1367 + content_length: 1320 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"f16b08af-fd76-40ee-b896-a9abe7dddf41","ip":"172.16.0.4","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"static","service_ip":"172.16.0.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1367" + - "1320" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:18 GMT + - Mon, 30 Jun 2025 15:18:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4662,11 +4909,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7129dcd-e960-4829-8ce6-54827588a6c8 + - 3bf6625e-5e20-4c8f-8418-b553194966bd status: 200 OK code: 200 - duration: 511.453714ms - - id: 95 + duration: 131.727333ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4681,8 +4928,55 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:04 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e47aec01-14c1-4899-92ab-a060820d13b5 + status: 204 No Content + code: 204 + duration: 2.370821541s + - id: 101 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4690,20 +4984,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1111 + content_length: 1069 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1111" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:49 GMT + - Mon, 30 Jun 2025 15:18:33 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4711,11 +5005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d03dced1-80c1-4316-9d8b-9729f05f404d + - 97559421-04af-41bc-b6fb-ddf0c2536baf status: 200 OK code: 200 - duration: 122.983159ms - - id: 96 + duration: 132.597667ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -4726,14 +5020,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","ipam_config":{}}}}' + body: '{"endpoint_spec":{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","ipam_config":{}}}}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/endpoints + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints method: POST response: proto: HTTP/2.0 @@ -4741,20 +5035,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 248 + content_length: 243 uncompressed: false - body: '{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}' + body: '{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}' headers: Content-Length: - - "248" + - "243" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:52 GMT + - Mon, 30 Jun 2025 15:18:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4762,11 +5056,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a396824-28f5-4dd7-8c79-2a39e3b1697a + - 28a41e33-a047-497a-afc2-7b742ba5a7a9 status: 200 OK code: 200 - duration: 2.701512182s - - id: 97 + duration: 2.59575125s + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4781,8 +5075,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4790,20 +5084,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1366 + content_length: 1319 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1366" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:06:52 GMT + - Mon, 30 Jun 2025 15:18:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4811,11 +5105,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec5427bb-b670-47fb-9d31-74de6f245989 + - b7387e20-7c08-455f-b0ee-4ebf6ca01b48 status: 200 OK code: 200 - duration: 147.892809ms - - id: 98 + duration: 117.991ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -4830,8 +5124,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -4839,20 +5133,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:22 GMT + - Mon, 30 Jun 2025 15:19:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4860,11 +5154,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ffe12aa-021f-4999-a419-ce0eb625e4a4 + - 704d874b-181f-432a-935e-c12e1af9b632 status: 200 OK code: 200 - duration: 109.843692ms - - id: 99 + duration: 130.992583ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -4879,8 +5173,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -4888,20 +5182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1721" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:22 GMT + - Mon, 30 Jun 2025 15:19:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4909,11 +5203,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c398becc-ad87-4de4-88f5-d1212be6cebc + - 11ff23f8-c921-4d2e-b914-b34d166306ca status: 200 OK code: 200 - duration: 170.776756ms - - id: 100 + duration: 121.007958ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -4928,8 +5222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df93d876-9d46-434b-9193-d7ef4f38f6da&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -4937,20 +5231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 557 + content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-05-05T22:06:52.001863Z","id":"e54b10d1-147c-4f1a-9526-5696d29c298f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:12:99:C3","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:06:52.638624Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:18:35.178332Z","id":"4deecdeb-334b-4bbb-a81b-44a76424f6b2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1D:78:E5","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:18:36.392297Z","zone":null}],"total_count":1}' headers: Content-Length: - - "557" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:22 GMT + - Mon, 30 Jun 2025 15:19:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4958,11 +5252,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73ad9d0b-c3c7-4701-a8a9-ee2c79f8b9b2 + - 0b5a4411-df80-4ac3-b4a7-b2bc16e2e2cf status: 200 OK code: 200 - duration: 72.078818ms - - id: 101 + duration: 52.118958ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -4977,8 +5271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -4986,20 +5280,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:23 GMT + - Mon, 30 Jun 2025 15:19:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5007,11 +5301,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0ccad98-246a-4ad7-8b61-665d68b35476 + - 1ca30273-3f19-4a52-a581-31007758d3e9 status: 200 OK code: 200 - duration: 165.985867ms - - id: 102 + duration: 32.918042ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5026,8 +5320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5035,20 +5329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:23 GMT + - Mon, 30 Jun 2025 15:19:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5056,11 +5350,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7045317-b930-41e5-a29e-aeee36f001b1 + - 98d08da8-c985-4656-8f07-398abd5677b1 status: 200 OK code: 200 - duration: 135.671199ms - - id: 103 + duration: 125.705333ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5075,8 +5369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -5084,20 +5378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-05T22:00:19.550526Z","dhcp_enabled":true,"id":"df93d876-9d46-434b-9193-d7ef4f38f6da","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-05T22:00:19.550526Z","id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.0.0/22","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-05T22:00:19.550526Z","id":"4047a6a1-defa-490c-89db-6b95204979fc","private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d662::/64","updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-05T22:00:19.550526Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1044" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:23 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5105,11 +5399,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 066a71a8-5bf4-415d-82a5-3441649b12e8 + - 105e3889-b639-4dbe-b019-cd1bd551d274 status: 200 OK code: 200 - duration: 55.220911ms - - id: 104 + duration: 27.421084ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5124,8 +5418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5133,20 +5427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:23 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5154,11 +5448,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03cf77de-6530-49c6-ac5d-b2f812de6697 + - 729a907b-05c2-4ddb-ae65-1960d25dcfab status: 200 OK code: 200 - duration: 620.586457ms - - id: 105 + duration: 142.249125ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5173,8 +5467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate method: GET response: proto: HTTP/2.0 @@ -5182,20 +5476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURYVENDQWtXZ0F3SUJBZ0lVRTJPZTFoTWJobVNqc3lPODZnL3U4ekRBM0Q0d0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZURUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RXpBUkJnTlZCQU1NQ2pFM01pNHhOaTR3TGpJd0hoY05NalV3Ck5UQTFNakl3TVRJNFdoY05NelV3TlRBek1qSXdNVEk0V2pCVk1Rc3dDUVlEVlFRR0V3SkdVakVPTUF3R0ExVUUKQ0F3RlVHRnlhWE14RGpBTUJnTlZCQWNNQlZCaGNtbHpNUkV3RHdZRFZRUUtEQWhUWTJGc1pYZGhlVEVUTUJFRwpBMVVFQXd3S01UY3lMakUyTGpBdU1qQ0NBU0l3RFFZSktvWklodmNOQVFFQkJRQURnZ0VQQURDQ0FRb0NnZ0VCCkFMVjhtQzFrY1RRVGp3OGQwMDR6Sk5IS3liaTJSckZHT1d5MW4ybDdMN0RXdUNFc3VleXRIS3B5NjN1M0hhWGkKYS9rbEpBVWtlWnNuWGJnUUxObHdFWEp2MVNubzlWdnpwSTBJUzJnMkJJQUZ6K1l1Zk5TVG5TRCtLall1WllsMwpQbk50WGttR216Y1FBYnBRbzhmWTlsTlM2eG95WVFQYzlTUlFSOUFsNzN6dnhRU0t6elZhYURYbTlWd1p0c3NICnBFUHZPeUZpRUZIZ1FqMjg5amJjcDlUcllYcmJEVzZ2QmpadVRPSUcveVNpNTR3MExkRFdoQWoxS3ZpaWw4RWoKRHdlaEdjNFRpcWtFQTlDeVRPRzhhVXJIQXI3Rk43NE55RGRKRGkrckNmbHdqVi9yTmZ0Q2h2eUNLRmpjaUJVcwp4VmdJNk82SHdtVnJYQTRXU0NqNjVka0NBd0VBQWFNbE1DTXdJUVlEVlIwUkJCb3dHSUlLTVRjeUxqRTJMakF1Ck1vY0VNdytEZ0ljRXJCQUFBakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBblhvYnVjb3ZhUU5uRk1BYy8rN3kKMDFtYjZtMEJPZ3RMUGdaVnJQVFJLQytuSXg3MUU1V1pjWnoxN2Q1T0xHaEtDZ2l4aTN0ai9kQ013RXN1ZXpNMApkZjRJa3psNHJCRmQ5LzdQQk1OcUVjdnV4a21qalMwWjVnSCtOdXIveGpJbWFLcklHL0RaYVZtcGJrVUkzSVVTCmhPNEtXa3NsVkZqSDhHSUVvSXFuZEpYZGpEaFRZaG1sdGZBcFA1a0RwR1o3T2VwVzlMRDNjdTlHUmJsck5iWWUKbHZtSXBXYmEzT05lN2tXZEYwREgxbjlFbmF1a2UzSHU1cXd4QjJRaVhUNEkzZ0kydzJoVHgxQ0xlUU5JWnQ4MwpKZGpGdllsQXJPVjZjRXlJOWk0YjhvZW0rN0sycksxV1dEZGxrNXRZSkpaeGkwL3hNWVliWXMxSFhtQVdkUzhRCmlnPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - - "1721" + - "1723" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:24 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5203,11 +5497,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aecdb7e6-3a0b-47f6-99fc-d53b5e616ab2 + - 39a03955-11d9-41ef-b230-86b01ba7b886 status: 200 OK code: 200 - duration: 93.411402ms - - id: 106 + duration: 106.7225ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5222,8 +5516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df93d876-9d46-434b-9193-d7ef4f38f6da&resource_id=d8ebe2f3-6bfa-45a0-9deb-734f10cef75c&resource_type=rdb_instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -5231,20 +5525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 557 + content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.0.2/22","created_at":"2025-05-05T22:06:52.001863Z","id":"e54b10d1-147c-4f1a-9526-5696d29c298f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","mac_address":"02:00:00:12:99:C3","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"15cec6d7-8e4d-4e2b-a367-28884f3800d5"},"tags":["managed","scwdbaas"],"updated_at":"2025-05-05T22:06:52.638624Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:18:35.178332Z","id":"4deecdeb-334b-4bbb-a81b-44a76424f6b2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1D:78:E5","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:18:36.392297Z","zone":null}],"total_count":1}' headers: Content-Length: - - "557" + - "542" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:24 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5252,11 +5546,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c407180c-b91b-476a-baef-7504c67e44fd + - d047cf97-6040-4c23-9ad8-75e03dc74502 status: 200 OK code: 200 - duration: 77.184976ms - - id: 107 + duration: 56.746792ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5271,8 +5565,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5280,20 +5574,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1359" + - "1312" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:25 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5301,11 +5595,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2423190-3a8f-4fb8-8095-e9b3b1d6ae73 + - 71f46f18-d732-4ecb-8e83-8738918caa2b status: 200 OK code: 200 - duration: 653.821912ms - - id: 108 + duration: 127.715875ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5320,8 +5614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: DELETE response: proto: HTTP/2.0 @@ -5329,20 +5623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1362 + content_length: 1315 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1362" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:26 GMT + - Mon, 30 Jun 2025 15:19:07 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5350,11 +5644,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcf75763-2ca6-4edd-968e-4851008dca1a + - 601f5400-fdc8-4bbd-9f0c-a866149df486 status: 200 OK code: 200 - duration: 510.884079ms - - id: 109 + duration: 269.621167ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5369,8 +5663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5378,20 +5672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1362 + content_length: 1315 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-05T22:00:20.477851Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"a57d7863-efa7-4a77-8ef2-b8968dc6ca1c","ip":"172.16.0.2","name":null,"port":5432,"private_network":{"private_network_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","provisioning_mode":"ipam","service_ip":"172.16.0.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1362" + - "1315" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:26 GMT + - Mon, 30 Jun 2025 15:19:08 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5399,11 +5693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08342b7e-15bc-4ba8-8bc5-16786d69b288 + - 87616626-ca45-45a1-9d8e-d0ac87568196 status: 200 OK code: 200 - duration: 104.628208ms - - id: 110 + duration: 154.149667ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5418,8 +5712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5429,7 +5723,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"572165b4-742f-4d6f-9809-d775a7219240","type":"not_found"}' headers: Content-Length: - "129" @@ -5438,9 +5732,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:56 GMT + - Mon, 30 Jun 2025 15:19:38 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5448,11 +5742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b62c9a1a-2297-49de-aff8-63dbab5d405d + - 20d350e6-9928-4282-87e7-d08ee2e25e57 status: 404 Not Found code: 404 - duration: 165.729355ms - - id: 111 + duration: 98.593791ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5467,8 +5761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: DELETE response: proto: HTTP/2.0 @@ -5485,9 +5779,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:57 GMT + - Mon, 30 Jun 2025 15:19:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5495,11 +5789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37dfd63a-8cef-4f9a-a0aa-8fd7aa216fcb + - 01580839-7c1d-4bec-aae6-22d445fd1e10 status: 204 No Content code: 204 - duration: 1.463786283s - - id: 112 + duration: 3.290910708s + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5514,8 +5808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/d8ebe2f3-6bfa-45a0-9deb-734f10cef75c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 method: GET response: proto: HTTP/2.0 @@ -5525,7 +5819,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"d8ebe2f3-6bfa-45a0-9deb-734f10cef75c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"572165b4-742f-4d6f-9809-d775a7219240","type":"not_found"}' headers: Content-Length: - "129" @@ -5534,9 +5828,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:58 GMT + - Mon, 30 Jun 2025 15:19:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5544,11 +5838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86f3657f-752d-4b00-9e27-49f0b729a491 + - e576ae2a-9f77-40a0-bdee-d7886060c426 status: 404 Not Found code: 404 - duration: 56.252551ms - - id: 113 + duration: 74.817333ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5563,8 +5857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df93d876-9d46-434b-9193-d7ef4f38f6da + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c method: GET response: proto: HTTP/2.0 @@ -5574,7 +5868,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"df93d876-9d46-434b-9193-d7ef4f38f6da","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","type":"not_found"}' headers: Content-Length: - "136" @@ -5583,9 +5877,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 05 May 2025 22:07:58 GMT + - Mon, 30 Jun 2025 15:19:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5593,7 +5887,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59c97ec4-b19f-4308-9613-52b3a4ac40dc + - 968079af-e609-4031-911b-93ac9559d5bb status: 404 Not Found code: 404 - duration: 26.61939ms + duration: 24.486083ms diff --git a/internal/services/rdb/testdata/instance-private-network.cassette.yaml b/internal/services/rdb/testdata/instance-private-network.cassette.yaml index 54074b2d94..4392992136 100644 --- a/internal/services/rdb/testdata/instance-private-network.cassette.yaml +++ b/internal/services/rdb/testdata/instance-private-network.cassette.yaml @@ -16,7 +16,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/rdb/v1/regions/fr-par/database-engines method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 146375 + content_length: 146415 uncompressed: false - body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per session for computation of normalized statement digests","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes used to store SQL statements","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_sql_text_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_insert_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Specifies the number of inserted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1147483647,"int_min":-1,"name":"autovacuum_vacuum_insert_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"50","description":"Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":50,"name":"autovacuum_vacuum_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"Specifies the timezone in which the pg_cron background worker should run.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"cron.timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Causes checkpoints and restartpoints to be logged in the server log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_checkpoints","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"on","description":"Logs long lock waits","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_lock_waits","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"5000","description":"Sets the minimum execution time above which all statements will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_min_duration_statement","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Logs each replication command","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"log_replication_commands","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Log the use of temporary files larger than this number of kilobytes","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_temp_files","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"5000","description":"Specifies the maximum number of statements tracked by the module.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":15000,"int_min":100,"name":"pg_stat_statements.max","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"top","description":"Controls which statements are counted by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track","property_type":"STRING","string_constraint":"^(top|all|none)$","unit":null},{"default_value":"on","description":"Controls whether utility commands are tracked by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track_utility","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2028-11-09T00:00:00Z","name":"PostgreSQL-16","version":"16"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' + body: '{"engines":[{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/mysql.svg","name":"MySQL","region":"fr-par","versions":[{"available_init_settings":[{"default_value":"0","description":"If set to 0, table names are stored as specified and comparisons are case-sensitive. If set to 1, table names are stored in lowercase on disk and comparisons are not case sensitive.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1,"int_min":0,"name":"lower_case_table_names","property_type":"INT","string_constraint":null,"unit":null}],"available_settings":[{"default_value":"1","description":"Controls the AUTO_INCREMENT interval between successive column values","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_increment","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Determines the starting point for the AUTO_INCREMENT column value","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65535,"int_min":1,"name":"auto_increment_offset","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"utf8mb4","description":"Specify a specific server side character-set encoding","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"character_set_server","property_type":"STRING","string_constraint":"^(armscii8|ascii|big5|binary|cp1250|cp1251|cp1256|cp1257|cp850|cp852|cp866|cp932|dec8|eucjpms|euckr|gb18030|gb2312|gbk|geostd8|greek|hebrew|hp8|keybcs2|koi8r|koi8u|latin1|latin2|latin5|latin7|macce|macroman|sjis|swe7|tis620|ucs2|ujis|utf16|utf16le|utf32|utf8|utf8mb4)$","unit":null},{"default_value":"10","description":"The number of seconds that the mysqld server waits for a connect packet before responding with Bad handshake","float_max":null,"float_min":null,"hot_configurable":true,"int_max":300,"int_min":10,"name":"connect_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"mysql_native_password","description":"The default authentication plugin at the user creation","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_authentication_plugin","property_type":"STRING","string_constraint":"^(mysql_native_password|caching_sha2_password)$","unit":null},{"default_value":"UTC","description":"This option sets the global time_zone system variable.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"default_time_zone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"The maximum permitted result length in bytes for the GROUP_CONCAT() function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":65536,"int_min":1024,"name":"group_concat_max_len","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"fsync","description":"Defines the method used to flush data to InnoDB data files and log files, which can affect I/O throughput","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"innodb_flush_method","property_type":"STRING","string_constraint":"^(fsync|O_DIRECT)$","unit":null},{"default_value":"84","description":"The maximum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":84,"int_min":10,"name":"innodb_ft_max_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"3","description":"The minimum character length of words that are stored in an InnoDB FULLTEXT index.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":16,"int_min":0,"name":"innodb_ft_min_token_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"50","description":"The length of time in seconds an InnoDB transaction waits for a row lock before giving up","float_max":null,"float_min":null,"hot_configurable":true,"int_max":600,"int_min":1,"name":"innodb_lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"The number of index pages to sample when estimating cardinality and other statistics for an indexed column","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1000,"int_min":20,"name":"innodb_stats_persistent_sample_pages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on an interactive connection before closing it","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":60,"name":"interactive_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls server-side LOCAL capability for LOAD DATA statements","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"local_infile","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"31536000","description":"This variable specifies the timeout in seconds for attempts to acquire metadata locks","float_max":null,"float_min":null,"hot_configurable":true,"int_max":31536000,"int_min":60,"name":"lock_wait_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"This variable controls whether stored function creators can be trusted","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_bin_trust_function_creators","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"10","description":"If the slow query log is enabled, the query is logged to the slow query log file if it takes longer than this threshold","float_max":3600,"float_min":0,"hot_configurable":true,"int_max":null,"int_min":null,"name":"long_query_time","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"64","description":"The maximum size (MB) of one packet or any generated/intermediate string, or any parameter sent by the mysql_stmt_send_long_data() C API function","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":4,"name":"max_allowed_packet","property_type":"INT","string_constraint":null,"unit":"M"},{"default_value":"100","description":"The maximum permitted number of simultaneous client connections","float_max":null,"float_min":null,"hot_configurable":true,"int_max":5000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per session for computation of normalized statement digests","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16382","description":"Limit the total number of prepared statements in the server","float_max":null,"float_min":null,"hot_configurable":false,"int_max":1048576,"int_min":16382,"name":"max_prepared_stmt_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Queries that examine fewer than this number of rows are not logged to the slow query log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"min_examined_row_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes of memory reserved per statement for computation of normalized statement digest values in the Performance Schema","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_digest_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1024","description":"The maximum number of bytes used to store SQL statements","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":1024,"name":"performance_schema_max_sql_text_length","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"OFF","description":"Whether the slow query log is enabled","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"slow_query_log","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"262144","description":"Connection sort buffer memory size. Large buffer slows down most queries that perform sorts.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10485760,"int_min":32768,"name":"sort_buffer_size","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"ONLY_FULL_GROUP_BY,STRICT_TRANS_TABLES,NO_ZERO_IN_DATE,NO_ZERO_DATE,ERROR_FOR_DIVISION_BY_ZERO,NO_ENGINE_SUBSTITUTION","description":"Modes affect the SQL syntax MySQL supports and the data validation checks it performs","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"sql_mode","property_type":"STRING","string_constraint":"^((ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION)(,(ONLY_FULL_GROUP_BY|STRICT_TRANS_TABLES|ALLOW_INVALID_DATES|NO_ZERO_IN_DATE|NO_ZERO_DATE|ERROR_FOR_DIVISION_BY_ZERO|NO_ENGINE_SUBSTITUTION))*)?$","unit":null},{"default_value":"2000","description":"The number of table definitions that can be stored in the definition cache","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_definition_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10000","description":"The number of open tables for all threads","float_max":null,"float_min":null,"hot_configurable":true,"int_max":20000,"int_min":1000,"name":"table_open_cache","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"16","description":"The number of open tables cache instances. Improve scalability by reducing contention among sessions but increase memory usage in case of many triggers or procedures","float_max":null,"float_min":null,"hot_configurable":true,"int_max":16,"int_min":1,"name":"table_open_cache_instances","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"280","description":"Defines the stack size for each thread and impact the complexity of the SQL statements that the server can handle.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10240,"int_min":128,"name":"thread_stack","property_type":"INT","string_constraint":null,"unit":"K"},{"default_value":"REPEATABLE-READ","description":"Define the transaction isolation level which fine-tunes the balance between performance and reliability, consistency, and reproducibility of your database","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"transaction_isolation","property_type":"STRING","string_constraint":"^(REPEATABLE-READ|READ-COMMITTED|READ-UNCOMMITTED|SERIALIZABLE)$","unit":null},{"default_value":"21600","description":"The number of seconds the server waits for activity on a noninteractive connection before closing it","float_max":null,"float_min":null,"hot_configurable":false,"int_max":21600,"int_min":60,"name":"wait_timeout","property_type":"INT","string_constraint":null,"unit":null}],"beta":false,"disabled":false,"end_of_life":"2026-04-01T00:00:00Z","name":"MySQL-8","version":"8"}]},{"logo_url":"https://s3.nl-ams.scw.cloud/scw-rdb-logos/postgresql.svg","name":"PostgreSQL","region":"fr-par","versions":[{"available_init_settings":[],"available_settings":[{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_insert_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_insert_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Specifies the number of inserted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1147483647,"int_min":-1,"name":"autovacuum_vacuum_insert_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0.2","description":"Specifies a fraction of the table size to add to autovacuum_vacuum_threshold when deciding whether to trigger a VACUUM.","float_max":100,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"autovacuum_vacuum_scale_factor","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"50","description":"Specifies the minimum number of updated or deleted tuples needed to trigger a VACUUM in any one table.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":50,"name":"autovacuum_vacuum_threshold","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"Specifies the timezone in which the pg_cron background worker should run.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"cron.timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Causes checkpoints and restartpoints to be logged in the server log.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_checkpoints","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"on","description":"Logs long lock waits","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"log_lock_waits","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"5000","description":"Sets the minimum execution time above which all statements will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_min_duration_statement","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"on","description":"Logs each replication command","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"log_replication_commands","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Log the use of temporary files larger than this number of kilobytes","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_temp_files","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"5000","description":"Specifies the maximum number of statements tracked by the module.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":15000,"int_min":100,"name":"pg_stat_statements.max","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"top","description":"Controls which statements are counted by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track","property_type":"STRING","string_constraint":"^(top|all|none)$","unit":null},{"default_value":"on","description":"Controls whether utility commands are tracked by the module.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pg_stat_statements.track_utility","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2028-11-09T00:00:00Z","name":"PostgreSQL-16","version":"16"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2027-11-11T00:00:00Z","name":"PostgreSQL-15","version":"15"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2026-11-12T00:00:00Z","name":"PostgreSQL-14","version":"14"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":false,"end_of_life":"2025-11-13T00:00:00Z","name":"PostgreSQL-13","version":"13"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"1","description":"Sets the number of concurrent disk I/O operations that PostgreSQL expects can be executed simultaneously.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":32,"int_min":1,"name":"effective_io_concurrency","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"none","description":"Specifies which classes of statements will be logged by session audit logging","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.log","property_type":"STRING","string_constraint":"^none$|^ALL$|^(?:(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\1))(?:(,)(READ|WRITE|FUNCTION|ROLE|DDL|MISC|MISC_SET)(?!.*\\2\\3))*$","unit":null},{"default_value":"","description":"Specifies the master role to use for object audit logging.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"pgaudit.role","property_type":"STRING","string_constraint":"^[a-zA-Z][a-zA-Z0-9_$-]{0,62}$","unit":null},{"default_value":"4.0","description":"Sets the planner''s estimate of the cost of a non-sequentially-fetched disk page.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"random_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"off","description":"Enable pgaudit extension on the instance.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"rdb.enable_pgaudit","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"1.0","description":"Sets the planner''s estimate of the cost of a disk page fetch that is part of a series of sequential fetches.","float_max":10,"float_min":0.1,"hot_configurable":true,"int_max":null,"int_min":null,"name":"seq_page_cost","property_type":"FLOAT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2024-11-14T00:00:00Z","name":"PostgreSQL-12","version":"12"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"1024","description":"Sets the size reserved for pg_stat_activity.query.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":8192,"int_min":100,"name":"track_activity_query_size","property_type":"INT","string_constraint":null,"unit":"B"},{"default_value":"off","description":"Record commit time of transactions.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":null,"int_min":null,"name":"track_commit_timestamp","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2023-11-09T00:00:00Z","name":"PostgreSQL-11","version":"11"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30","description":"Sets the maximum time between automatic WAL checkpoints","float_max":null,"float_min":null,"hot_configurable":true,"int_max":21600,"int_min":30,"name":"checkpoint_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"off","description":"Specifies whether or not a hot standby will send feedback to the primary or upstream standby about queries currently executing on the standby.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"hot_standby_feedback","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"-1","description":"Sets the minimum execution time above which autovacuum actions will be logged","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":-1,"name":"log_autovacuum_min_duration","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8","description":"Sets the maximum number of parallel workers that can be active at one time.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"30000","description":"Sets the maximum delay before canceling queries when a hot standby server is processing streamed WAL data.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":180000,"int_min":0,"name":"max_standby_streaming_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"1024","description":"Maximum size to let the WAL grow during automatic checkpoints. Be careful adjusting this setting will use disk space","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10240,"int_min":256,"name":"max_wal_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2022-11-10T00:00:00Z","name":"PostgreSQL-10","version":"10"},{"available_init_settings":[],"available_settings":[{"default_value":"200","description":"Background writer sleep time between rounds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":10,"name":"bgwriter_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"512","description":"Number of pages after which previously performed writes are flushed to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2048,"int_min":0,"name":"bgwriter_flush_after","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"100","description":"Background writer maximum number of LRU pages to flush per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741823,"int_min":0,"name":"bgwriter_lru_maxpages","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Multiple of the average buffer usage to free per round.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10,"int_min":0,"name":"bgwriter_lru_multiplier","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Sets the delay in microseconds between transaction commit and flushing WAL to disk.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100000,"int_min":0,"name":"commit_delay","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1000","description":"Sets the time to wait on a lock before checking for deadlock.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":60000,"int_min":100,"name":"deadlock_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"100","description":"Sets the default statistics target.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"default_statistics_target","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"off","description":"Sets the default deferrable status of new transactions.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"default_transaction_deferrable","property_type":"BOOLEAN","string_constraint":null,"unit":null},{"default_value":"4096","description":"Sets the planner s assumption about the size of the data cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1048576,"int_min":64,"name":"effective_cache_size","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"3600000","description":"Sets the maximum allowed duration of any idling transaction. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"idle_in_transaction_session_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Sets the maximum allowed duration of any wait for a lock.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":0,"name":"lock_timeout","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum memory to be used for maintenance operations.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"maintenance_work_mem","property_type":"INT","string_constraint":null,"unit":"MB"},{"default_value":"100","description":"Sets the maximum number of concurrent connections.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":10000,"int_min":50,"name":"max_connections","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"64","description":"Sets the maximum number of locks per transaction.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":10,"name":"max_locks_per_transaction","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"2","description":"Sets the maximum number of parallel processes per executor node.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1024,"int_min":0,"name":"max_parallel_workers_per_gather","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"86400000","description":"Sets the maximum allowed duration of any statement. Value in ms","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":30000,"name":"statement_timeout","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"0","description":"Maximum number of TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_count","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between issuing TCP keepalives.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_idle","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"0","description":"Time between TCP keepalive retransmits.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2147483647,"int_min":0,"name":"tcp_keepalives_interval","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"8192","description":"Sets the maximum number of temporary buffers used by each session.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":1073741824,"int_min":800,"name":"temp_buffers","property_type":"INT","string_constraint":null,"unit":"kB"},{"default_value":"-1","description":"Limits the total size of all temporary files used by each session.","float_max":null,"float_min":null,"hot_configurable":false,"int_max":2147483647,"int_min":-1,"name":"temp_file_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"GMT","description":"This option sets the global timezone system variable.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":null,"int_min":null,"name":"timezone","property_type":"STRING","string_constraint":"^((Africa\\/(Abidjan|Accra|Addis_Ababa|Algiers|Asmara|Bamako|Bangui|Banjul|Bissau|Blantyre|Brazzaville|Bujumbura|Cairo|Casablanca|Ceuta|Conakry|Dakar|Dar_es_Salaam|Djibouti|Douala|El_Aaiun|Freetown|Gaborone|Harare|Johannesburg|Juba|Kampala|Khartoum|Kigali|Kinshasa|Lagos|Libreville|Lome|Luanda|Lubumbashi|Lusaka|Malabo|Maputo|Maseru|Mbabane|Mogadishu|Monrovia|Nairobi|Ndjamena|Niamey|Nouakchott|Ouagadougou|Porto-Novo|Sao_Tome|Tripoli|Tunis|Windhoek))|(America\\/)(Adak|Anchorage|Anguilla|Antigua|Araguaina|Argentina\\/Buenos_Aires|Argentina\\/Catamarca|Argentina\\/Cordoba|Argentina\\/Jujuy|Argentina\\/La_Rioja|Argentina\\/Mendoza|Argentina\\/Rio_Gallegos|Argentina\\/Salta|Argentina\\/San_Juan|Argentina\\/San_Luis|Argentina\\/Tucuman|Argentina\\/Ushuaia|Aruba|Asuncion|Atikokan|Bahia|Bahia_Banderas|Barbados|Belem|Belize|Blanc-Sablon|Boa_Vista|Bogota|Boise|Cambridge_Bay|Campo_Grande|Cancun|Caracas|Cayenne|Cayman|Chicago|Chihuahua|Costa_Rica|Creston|Cuiaba|Curacao|Danmarkshavn|Dawson|Dawson_Creek|Denver|Detroit|Dominica|Edmonton|Eirunepe|El_Salvador|Fort_Nelson|Fortaleza|Glace_Bay|Goose_Bay|Grand_Turk|Grenada|Guadeloupe|Guatemala|Guayaquil|Guyana|Halifax|Havana|Hermosillo|Indiana\\/Indianapolis|Indiana\\/Knox|Indiana\\/Marengo|Indiana\\/Petersburg|Indiana\\/Tell_City|Indiana\\/Vevay|Indiana\\/Vincennes|Indiana\\/Winamac|Inuvik|Iqaluit|Jamaica|Juneau|Kentucky\\/Louisville|Kentucky\\/Monticello|Kralendijk|La_Paz|Lima|Los_Angeles|Lower_Princes|Maceio|Managua|Manaus|Marigot|Martinique|Matamoros|Mazatlan|Menominee|Merida|Metlakatla|Mexico_City|Miquelon|Moncton|Monterrey|Montevideo|Montserrat|Nassau|New_York|Nipigon|Nome|Noronha|North_Dakota\\/Beulah|North_Dakota\\/Center|North_Dakota\\/New_Salem|Nuuk|Ojinaga|Panama|Pangnirtung|Paramaribo|Phoenix|Port-au-Prince|Port_of_Spain|Porto_Velho|Puerto_Rico|Punta_Arenas|Rainy_River|Rankin_Inlet|Recife|Regina|Resolute|Rio_Branco|Santarem|Santiago|Santo_Domingo|Sao_Paulo|Scoresbysund|Sitka|St_Barthelemy|St_Johns|St_Kitts|St_Lucia|St_Thomas|St_Vincent|Swift_Current|Tegucigalpa|Thule|Thunder_Bay|Tijuana|Toronto|Tortola|Vancouver|Whitehorse|Winnipeg|Yakutat|Yellowknife)|(Antarctica\\/)(Casey|Davis|DumontDUrville|Macquarie|Mawson|McMurdo|Palmer|Rothera|Syowa|Troll|Vostok)|(Arctic\\/Longyearbyen)|(Asia\\/)(Aden|Almaty|Amman|Anadyr|Aqtau|Aqtobe|Ashgabat|Atyrau|Baghdad|Bahrain|Baku|Bangkok|Barnaul|Beirut|Bishkek|Brunei|Chita|Choibalsan|Colombo|Damascus|Dhaka|Dili|Dubai|Dushanbe|Famagusta|Gaza|Hebron|Ho_Chi_Minh|Hong_Kong|Hovd|Irkutsk|Jakarta|Jayapura|Jerusalem|Kabul|Kamchatka|Karachi|Kathmandu|Khandyga|Kolkata|Krasnoyarsk|Kuala_Lumpur|Kuching|Kuwait|Macau|Magadan|Makassar|Manila|Muscat|Nicosia|Novokuznetsk|Novosibirsk|Omsk|Oral|Phnom_Penh|Pontianak|Pyongyang|Qatar|Qostanay|Qyzylorda|Riyadh|Sakhalin|Samarkand|Seoul|Shanghai|Singapore|Srednekolymsk|Taipei|Tashkent|Tbilisi|Tehran|Thimphu|Tokyo|Tomsk|Ulaanbaatar|Urumqi|Ust-Nera|Vientiane|Vladivostok|Yakutsk|Yangon|Yekaterinburg|Yerevan)|(Atlantic\\/)(Azores|Bermuda|Canary|Cape_Verde|Faroe|Madeira|Reykjavik|South_Georgia|St_Helena|Stanley)|(Australia\\/)(Adelaide|Brisbane|Broken_Hill|Currie|Darwin|Eucla|Hobart|Lindeman|Lord_Howe|Melbourne|Perth|Sydney)|(Canada\\/)(Atlantic|Central|Eastern|Mountain|Newfoundland|Pacific)|(Europe\\/)(Amsterdam|Andorra|Astrakhan|Athens|Belgrade|Berlin|Bratislava|Brussels|Bucharest|Budapest|Busingen|Chisinau|Copenhagen|Dublin|Gibraltar|Guernsey|Helsinki|Isle_of_Man|Istanbul|Jersey|Kaliningrad|Kiev|Kirov|Lisbon|Ljubljana|London|Luxembourg|Madrid|Malta|Mariehamn|Minsk|Monaco|Moscow|Oslo|Paris|Podgorica|Prague|Riga|Rome|Samara|San_Marino|Sarajevo|Saratov|Simferopol|Skopje|Sofia|Stockholm|Tallinn|Tirane|Ulyanovsk|Uzhgorod|Vaduz|Vatican|Vienna|Vilnius|Volgograd|Warsaw|Zagreb|Zaporozhye|Zurich)|(GMT)|(UTC)|(Indian\\/)(Antananarivo|Chagos|Christmas|Cocos|Comoro|Kerguelen|Mahe|Maldives|Mauritius|Mayotte|Reunion)|(Pacific\\/)(Apia|Auckland|Bougainville|Chatham|Chuuk|Easter|Efate|Enderbury|Fakaofo|Fiji|Funafuti|Galapagos|Gambier|Guadalcanal|Guam|Honolulu|Kiritimati|Kosrae|Kwajalein|Majuro|Marquesas|Midway|Nauru|Niue|Norfolk|Noumea|Pago_Pago|Palau|Pitcairn|Pohnpei|Port_Moresby|Rarotonga|Saipan|Tahiti|Tarawa|Tongatapu|Wake|Wallis)|(US\\/)(Alaska|Arizona|Central|Eastern|Hawaii|Mountain|Pacific))$","unit":null},{"default_value":"0","description":"Vacuum cost delay in milliseconds.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":100,"int_min":0,"name":"vacuum_cost_delay","property_type":"INT","string_constraint":null,"unit":"ms"},{"default_value":"200","description":"Vacuum cost amount available before napping.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":1,"name":"vacuum_cost_limit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"20","description":"Vacuum cost for a page dirtied by vacuum.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_dirty","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"1","description":"Vacuum cost for a page found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_hit","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"10","description":"Vacuum cost for a page not found in the buffer cache.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":10000,"int_min":0,"name":"vacuum_cost_page_miss","property_type":"INT","string_constraint":null,"unit":null},{"default_value":"4","description":"Sets the maximum memory to be used for query workspaces.","float_max":null,"float_min":null,"hot_configurable":true,"int_max":2097151,"int_min":1,"name":"work_mem","property_type":"INT","string_constraint":null,"unit":"MB"}],"beta":false,"disabled":true,"end_of_life":"2021-11-11T00:00:00Z","name":"PostgreSQL-9.6","version":"9.6"}]}],"total_count":2}' headers: Content-Length: - - "146375" + - "146415" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:00:43 GMT + - Mon, 30 Jun 2025 15:11:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38aae572-5602-491a-b1f2-b9da258fac31 + - df00d16e-88e4-4348-81b0-d6bf549f6538 status: 200 OK code: 200 - duration: 272.819202ms + duration: 147.250916ms - id: 1 request: proto: HTTP/1.1 @@ -61,13 +61,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my vpc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs method: POST response: @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 394 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.043045Z","custom_routes_propagation_enabled":false,"id":"b1a4f7bb-2fac-4376-adc4-189807a14886","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T15:08:03.043045Z"}' + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":false,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.810168Z"}' headers: Content-Length: - "394" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,11 +97,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f508d724-cf3c-4275-b44c-3fd83e4c7cbc + - c6386c08-e225-4234-816f-9db2d77dc60f status: 200 OK code: 200 - duration: 168.950986ms + duration: 132.276917ms - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":true,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.943798Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:37 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56e80731-da34-401c-bb37-55f05ef19b1e + status: 200 OK + code: 200 + duration: 112.150709ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -116,8 +167,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/b1a4f7bb-2fac-4376-adc4-189807a14886 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e method: GET response: proto: HTTP/2.0 @@ -125,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.043045Z","custom_routes_propagation_enabled":false,"id":"b1a4f7bb-2fac-4376-adc4-189807a14886","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T15:08:03.043045Z"}' + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":true,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.943798Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,50 +197,399 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c856af0-7c60-41ea-89b0-ffe313534a9c + - 4e4a69ba-ba51-40f2-9561-8c3b151cfa5a status: 200 OK code: 200 - duration: 61.454242ms - - id: 3 + duration: 84.943166ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 63 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 336 + uncompressed: false + body: '{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"}' + headers: + Content-Length: + - "336" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4592f41d-3754-480d-affb-e8e060badab5 + status: 200 OK + code: 200 + duration: 1.005725167s + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 210 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"my_private_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["192.168.1.0/24"],"vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e","default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"created_at":"2025-06-30T15:11:38.142145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2025-06-30T15:11:38.142145Z","id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"},{"created_at":"2025-06-30T15:11:38.142145Z","id":"2313843b-88bd-4303-a803-a903359541c4","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e916::/64","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}],"tags":[],"updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0a834ef4-f4a6-4164-bdaa-62ffa5454116 + status: 200 OK + code: 200 + duration: 663.132041ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/e33579ba-a7f0-4c02-acd8-f50a455b4621 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 336 + uncompressed: false + body: '{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"}' + headers: + Content-Length: + - "336" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 825248ed-2df6-48fb-be60-0007dd212714 + status: 200 OK + code: 200 + duration: 70.061208ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1064 + uncompressed: false + body: '{"created_at":"2025-06-30T15:11:38.142145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2025-06-30T15:11:38.142145Z","id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"},{"created_at":"2025-06-30T15:11:38.142145Z","id":"2313843b-88bd-4303-a803-a903359541c4","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e916::/64","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}],"tags":[],"updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}' + headers: + Content-Length: + - "1064" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bd0894af-13ba-4e99-96ac-53581d70db3a + status: 200 OK + code: 200 + duration: 75.385792ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 187 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":[],"type":"VPC-GW-S","ip_id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","enable_smtp":false,"enable_bastion":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 878 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:38.924103Z","zone":"nl-ams-1"}' + headers: + Content-Length: + - "878" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:38 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1bdc6fab-2141-42e0-a86e-665e5ccbac89 + status: 200 OK + code: 200 + duration: 148.843834ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 896 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:38.979163Z","version":"0.7.4","zone":"nl-ams-1"}' + headers: + Content-Length: + - "896" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4705c6e2-b09e-41ca-8cb4-c82480ef3e6b + status: 200 OK + code: 200 + duration: 73.241ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 581 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-rdb-private-network-dhcp","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","service_ip":"192.168.1.254/24"}}],"backup_same_region":false,"encryption":{"enabled":false}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1059 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1059" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:11:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b26cd9ec-dbc3-4774-b261-1f9a2d11a1e2 + status: 200 OK + code: 200 + duration: 1.00951225s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 63 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 1059 uncompressed: false - body: '{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "338" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,50 +597,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a8e27b5-ccf9-4ac5-8449-a535c64fe67b + - 602099a4-7dad-47c6-b3d8-da54b6426d35 status: 200 OK code: 200 - duration: 855.545397ms - - id: 4 + duration: 161.437125ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 168 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my_private_network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":["192.168.1.0/24"],"vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 897 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.234262Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"81e18a36-837f-4ce0-8e62-29232a3e926c","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2025-05-16T15:08:03.234262Z","id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.1.0/24","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"},{"created_at":"2025-05-16T15:08:03.234262Z","id":"e03ed66a-62f7-4f39-b1c2-2accd32bfcc5","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd68:d440:21c4:509f::/64","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}],"tags":[],"updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:39.159309Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1064" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,11 +646,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90fd55fa-e69d-4def-9fc0-66515010fa45 + - f6a80f9a-95f8-4099-87fd-9ccf16d6cb8a status: 200 OK code: 200 - duration: 615.650333ms - - id: 5 + duration: 50.8285ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -267,8 +665,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/81e18a36-837f-4ce0-8e62-29232a3e926c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -276,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 897 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.234262Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"81e18a36-837f-4ce0-8e62-29232a3e926c","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2025-05-16T15:08:03.234262Z","id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.1.0/24","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"},{"created_at":"2025-05-16T15:08:03.234262Z","id":"e03ed66a-62f7-4f39-b1c2-2accd32bfcc5","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd68:d440:21c4:509f::/64","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}],"tags":[],"updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:39.159309Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1064" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,11 +695,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37bc6225-7e6c-450d-8dbd-a24518d61ab0 + - 7458fef3-4fd3-4405-a4d2-d9537218c082 status: 200 OK code: 200 - duration: 46.658036ms - - id: 6 + duration: 51.510791ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -316,8 +714,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/baef0419-58b1-4a71-9bb4-6e40aefda46e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -325,20 +723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 338 + content_length: 893 uncompressed: false - body: '{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:49.583670Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "338" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:03 GMT + - Mon, 30 Jun 2025 15:11:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,50 +744,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 737f4794-9e79-4978-9682-6782110c47dc + - ae09e318-a154-461c-a313-169562794ba9 status: 200 OK code: 200 - duration: 67.984383ms - - id: 7 + duration: 80.832709ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 187 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"foobar","tags":[],"type":"VPC-GW-S","ip_id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","enable_smtp":false,"enable_bastion":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 880 + content_length: 893 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:03.969575Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:49.583670Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "880" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:04 GMT + - Mon, 30 Jun 2025 15:11:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,11 +793,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9bee60d4-6095-4e74-b675-c7a9d75670fa + - d3d71e7d-dc0f-4445-bcd7-10a3ce318246 status: 200 OK code: 200 - duration: 158.457338ms - - id: 8 + duration: 47.72575ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -416,8 +812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -425,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 898 + content_length: 893 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:04.032896Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:49.583670Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "898" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:04 GMT + - Mon, 30 Jun 2025 15:11:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,29 +842,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06930cbe-1ceb-41a6-891d-077c7407655f + - 4e3df1ae-8c3f-4af3-b0ef-33c90de0d2cd status: 200 OK code: 200 - duration: 63.360255ms - - id: 9 + duration: 52.49675ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 581 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"test-rdb-private-network-dhcp","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","service_ip":"192.168.1.254/24"}}],"backup_same_region":false,"encryption":{"enabled":false}}' + body: '{"gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","enable_masquerade":true,"push_default_route":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks method: POST response: proto: HTTP/2.0 @@ -476,20 +872,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 384 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:11:54.772431Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1059" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:04 GMT + - Mon, 30 Jun 2025 15:11:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,11 +893,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6279729-0182-4aac-b877-52373506bd6e + - 40a8212b-0db9-45e9-87df-faa45a48aa36 status: 200 OK code: 200 - duration: 876.258288ms - - id: 10 + duration: 601.188125ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -516,8 +912,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -525,20 +921,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1059 + content_length: 1281 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:11:54.772431Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:54.925396Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1059" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:04 GMT + - Mon, 30 Jun 2025 15:11:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,11 +942,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ba80c4b-a417-4f93-93c8-8eb398cfff87 + - da9d6fb2-7ea1-4e90-9008-089df3685d16 status: 200 OK code: 200 - duration: 171.006807ms - - id: 11 + duration: 44.256792ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -565,8 +961,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -574,20 +970,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 895 + content_length: 1281 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:08.951765Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:11:54.772431Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:54.925396Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "895" + - "1281" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:09 GMT + - Mon, 30 Jun 2025 15:12:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -595,11 +991,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7f47dfc-8b62-4fcc-8e34-2649ee2129e6 + - 0dfaf36f-5733-4df8-b405-a86d22c405d8 status: 200 OK code: 200 - duration: 45.846232ms - - id: 12 + duration: 50.627833ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -614,8 +1010,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -623,20 +1019,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 895 + content_length: 1319 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:08.951765Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:12:00.940451Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:11:54.925396Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "895" + - "1319" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:09 GMT + - Mon, 30 Jun 2025 15:12:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,11 +1040,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53895f89-7c54-4f34-9b7b-23ac23466462 + - bb0cea43-fab8-4902-a535-b5ea49b7a543 status: 200 OK code: 200 - duration: 47.769077ms - - id: 13 + duration: 44.098708ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -663,8 +1059,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -672,20 +1068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 895 + content_length: 1059 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:08.951765Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "895" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:09 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,50 +1089,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3496a27-19dd-49ea-9769-77e1be118824 + - 6cc291d4-f878-4a41-b4c3-e5d98f16facc status: 200 OK code: 200 - duration: 46.905418ms - - id: 14 + duration: 149.805917ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","enable_masquerade":true,"push_default_route":true}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 384 + content_length: 1309 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"created","updated_at":"2025-05-16T15:08:09.555794Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "384" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:09 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -744,11 +1138,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3140214-7199-4301-9a3f-a2bd53b6eefb + - f1642ffa-4fa3-4e46-b4ec-d60d0b19b944 status: 200 OK code: 200 - duration: 460.625415ms - - id: 15 + duration: 56.085083ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -763,8 +1157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -772,20 +1166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1283 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"created","updated_at":"2025-05-16T15:08:09.555794Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:09.696094Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1283" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:09 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -793,11 +1187,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2b79f2f-1da2-4208-aa47-186d7bf57d05 + - 321928d6-fc4a-476c-977a-08c2a9c8b812 status: 200 OK code: 200 - duration: 88.923968ms - - id: 16 + duration: 107.771ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -812,8 +1206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -821,20 +1215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:24 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -842,11 +1236,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94782230-2e55-442b-bc9f-c401064ef5f6 + - bf34d9d8-8db3-44d0-8a4d-5c69330bfcd8 status: 200 OK code: 200 - duration: 46.23181ms - - id: 17 + duration: 109.733ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -861,8 +1255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -870,20 +1264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 1309 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "416" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:25 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -891,11 +1285,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4eaff40a-2a3b-4f3a-a793-a99adcc6a047 + - eb95e2bc-4813-42c9-9b8d-fc245c94bf03 status: 200 OK code: 200 - duration: 69.847002ms - - id: 18 + duration: 51.4775ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -910,8 +1304,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -919,20 +1313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 504 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - - "416" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:25 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -940,11 +1334,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab927633-a38d-4f20-ae57-99d815a9ccd3 + - b2a29ec1-00da-4a10-8848-6f10f13687b3 status: 200 OK code: 200 - duration: 110.875083ms - - id: 19 + duration: 122.045209ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -959,8 +1353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -968,20 +1362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 504 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1311" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:25 GMT + - Mon, 30 Jun 2025 15:12:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -989,11 +1383,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bfc96ce-f922-43d6-9b30-37e1d9755656 + - 5dd92b6b-2387-465c-b697-5b651e8cc69f status: 200 OK code: 200 - duration: 44.892455ms - - id: 20 + duration: 73.674791ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1008,8 +1402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=81e18a36-837f-4ce0-8e62-29232a3e926c&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1017,20 +1411,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 1059 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "504" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:25 GMT + - Mon, 30 Jun 2025 15:12:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,11 +1432,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc251870-fabc-425a-a4ca-41b05cbd3086 + - a4b05550-db94-4da8-8279-91a15cef9472 status: 200 OK code: 200 - duration: 99.061859ms - - id: 21 + duration: 198.968584ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1057,8 +1451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1066,20 +1460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 1059 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "504" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:25 GMT + - Mon, 30 Jun 2025 15:13:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,11 +1481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 176f88eb-ec63-4403-83ae-e223458a56ea + - a01b14d5-2713-447e-be3b-f6bc9c75be23 status: 200 OK code: 200 - duration: 72.999126ms - - id: 22 + duration: 291.806542ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1106,8 +1500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1117,7 +1511,7 @@ interactions: trailer: {} content_length: 1059 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1059" @@ -1126,9 +1520,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:08:35 GMT + - Mon, 30 Jun 2025 15:13:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,11 +1530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca226e10-1c55-4dea-a69a-a58ef88a28ef + - b2f51da7-f30e-4e5f-bf56-78969a7b99a5 status: 200 OK code: 200 - duration: 201.115508ms - - id: 23 + duration: 170.644125ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1155,8 +1549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1166,7 +1560,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -1175,9 +1569,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:35 GMT + - Mon, 30 Jun 2025 15:14:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,11 +1579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820ab62e-3279-453c-835e-fd2932008b82 + - 5477ba37-090b-4e24-8216-06817f510e36 status: 200 OK code: 200 - duration: 177.628977ms - - id: 24 + duration: 160.0135ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1204,8 +1598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc/certificate method: GET response: proto: HTTP/2.0 @@ -1215,7 +1609,7 @@ interactions: trailer: {} content_length: 1735 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRm9kY3dBbTBtUEd4T3RlRHRyNStMYTN0WEJJd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOVEUyTVRVd09UQTNXaGNOTXpVd05URTBNVFV3T1RBM1dqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxuRnB5S3d6YmRZWGg5YjVJZ0pVTkNHYy9aSnUzMEFNY2kwWFQzd040aExwbTAyOFBTRU1weGkKTHpVTU5CSVJxT0xzT2NkcFFJakZjeEZ1blBSTGl5Mm5KQlNwYTljS1RuNUk4YmxCcUJheCsrSXdHUys5cEhFRAowQWdFUHlldlJWb1lqMVRIdERsZ1B2RCsrV2NGMysxd3BlMFhxYzVTV0c0cHlrQXgzUHpiQkNLcDVtb2hxSUdoCnBxZlRmMVJsZml1MmdnNzRKRUpnY1kwdDF2OUhBVi91Tytwb3FQSkZpUGcrdTlHdmNZQXJTM2tKNTdvZEhySHUKckU3U0s1NjBYNFUrc1MvWXVmK1RsRTNNSHN6U0phc1NjeWFydmM1T2trSVl5dVNybG9aUjZCWWVqNzQ4VDNvdwo2bVZ5Mlp4S3M4UkVzMTNHaW9nb3F1N3VWMko5dVZjQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzlIZTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRE81Ukh2STMKTG40V2lRRFhxMklxSzdQSi8rZFlCNC81TnZ3TXRhcTVoeS81SWcyQ2dLcWVGNVMxWFh3Y2RBRWFWcWpaK3FDTQpXVHltcTRWYU95Q0dHd1lHMVM2ZmhPUEhTM1FHSHQwWFpTRlVMWnM0eGlZL01CMTlWbFdJZnVSeVUrMlkzTE0rCm84bVdTQW9qQm9zaGJHSEphSVlZUlJYOFlHcHZnRmp0Z2VaUk9INTFNN1FsMGdIMk40ZlJzcHk3V1MwQkFrYm4KRXRkckFtOFZmWDY1S0lrZk5rcUFSQnF0SkJUM3BwWnV6TkpQb3Vob09xanRFUTFNNjV4WFlDNjRYVUlsUFFCdApCTUNoc25Ic3h0Z1JwODd3N2pIbTJKdDk4UU1LT1F5YkFXQ2NQK29TaDdmZlQyMENQVXNiSUNJRS9neG1iV2loCjhBOGM2MjZmYmt2VVl3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVWkd1cDNkM2I3QTVhRW1QcDBySDc0dTY4ZTBVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOak13TVRVeE1qVTJXaGNOTXpVd05qSTRNVFV4TWpVMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU1lSzc1T0ZaU3NNTmRtUE1tTXZYNHgzT2dtYk9zVWdxeEFsUm1vOVZHT2pKaW41OTB0VFR2ZVYKaXl5alNiQXVOQW90UXhITUNHcXVtTXFoMHhuZ3VCeVk1YzlNU0p3WFNqb3JiL3UrS1ZQaVZPeVhYMnpka3ZqOApMN3lTZGVFcEdUK2RHUFExSE9yY29oZ3QyUXRuYmt5VjA0UHJwMCtTanV3RE1UVThySytaNVRCZGJuOTYxZlhkClNOa3RuNldxN2JmeEw3RGJmM2NWVjRlVEJQLzdnSDloOWNZTmNWd1FrSnp2T3N5UFNyTnk4cGJLYjhPMStwV20KM1liaHNqbDREbUp2d25kR0lkVVdVZmVZOTdobVhnMWt3WS9XTGRST3IvOUFvVVRJaHZUUXZsKzhWejUwdVNDcQpvUjF3a3VrZWIrMExrMXh4U1J5TExzSkk4R1dmQm1zQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2SVljRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRTEzUFgwVTAKZjFuRmJuT3FDT1VYc2xSTURncjN1RTA3Q2xEYmVqTWUxQ2J0WC95aWdJejg2Q1FVTG5NOU9JaDNpQWsvZlZqRwpDeEI0TDJpLzZYQmZQUFdFNzIvdDdGaUtHZFdCMldFSnZydHVBUnhFbGw1NTRzdzVrUGFkQ29aRWVMWlN2RnJjCnVKUW9XVWs0MWw0bzBHWHdRakhzSGwyVGZkYUxiRUlRQVRUTkN0STVpVm5VQk5jSjBPSTdPcWRwcnBVemtjeHQKREIyQzRXaUZYUWlwOEk2SkttZ0k4YUhFRzU3dW5hcDFZdVh1RkEvM25SdXJ5WmhheE8wVC9sMnE1aWxpaGY2TQpLNGdxeGhvbnJWYlVMMSsyYWdWM0U0QUpCL0doUzcrNngvd0FGa29tcUt4MlZMakwya1N6N3JHYmFsWnlpcnNUCjZaMkI2aklzMzF2dStBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1735" @@ -1224,9 +1618,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:35 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,11 +1628,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 846cf3a3-bb87-4cc3-a88e-06bf0b3b0cea + - b4afc28e-81a3-4fc3-983f-2a5c2f46e60a status: 200 OK code: 200 - duration: 276.99562ms - - id: 25 + duration: 133.306208ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1253,8 +1647,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -1262,20 +1656,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,11 +1677,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6535c9b7-9abe-4d3c-bbd6-43a4848407f4 + - 3bf4fa94-5d6b-4f75-a75d-975c948bd125 status: 200 OK code: 200 - duration: 53.133821ms - - id: 26 + duration: 44.611042ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1302,8 +1696,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -1311,20 +1705,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,11 +1726,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94ca1a6-8a13-49e5-803c-1bdfa01876a5 + - 2685d2c6-ac13-4f99-9e8c-3bc4e7c4f3d6 status: 200 OK code: 200 - duration: 46.246737ms - - id: 27 + duration: 54.6795ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1347,13 +1741,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","public_port":42,"private_ip":"192.168.1.2","private_port":5432,"protocol":"both"}' + body: '{"gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","public_port":42,"private_ip":"192.168.1.2","private_port":5432,"protocol":"both"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules method: POST response: @@ -1364,7 +1758,7 @@ interactions: trailer: {} content_length: 283 uncompressed: false - body: '{"created_at":"2025-05-16T15:10:36.302389Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"206c264c-839f-4995-95a4-5474bac6d936","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-05-16T15:10:36.302389Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:14:11.293366Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"a7bbfe37-196c-49f6-afb8-7937c137e897","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:14:11.293366Z","zone":"nl-ams-1"}' headers: Content-Length: - "283" @@ -1373,9 +1767,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1383,11 +1777,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2708e8d-ba92-442c-9cfe-2bd94b88e4b6 + - a9030e0c-ec8a-4ab3-afd5-7215cd1c7c81 status: 200 OK code: 200 - duration: 134.214247ms - - id: 28 + duration: 127.937458ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1402,8 +1796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -1411,20 +1805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1432,11 +1826,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3e6877f-a949-440b-9670-3f0f676eb58c + - 8db5bdbe-4b8b-4619-bb5b-1e990f660e41 status: 200 OK code: 200 - duration: 43.858988ms - - id: 29 + duration: 46.282833ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1451,8 +1845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/206c264c-839f-4995-95a4-5474bac6d936 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/a7bbfe37-196c-49f6-afb8-7937c137e897 method: GET response: proto: HTTP/2.0 @@ -1462,7 +1856,7 @@ interactions: trailer: {} content_length: 283 uncompressed: false - body: '{"created_at":"2025-05-16T15:10:36.302389Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"206c264c-839f-4995-95a4-5474bac6d936","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-05-16T15:10:36.302389Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:14:11.293366Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"a7bbfe37-196c-49f6-afb8-7937c137e897","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:14:11.293366Z","zone":"nl-ams-1"}' headers: Content-Length: - "283" @@ -1471,9 +1865,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1481,11 +1875,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22490703-1115-4d5e-82b8-ed8f4d89e341 + - cdd3f3f3-c145-409f-b2d5-9a036eea8035 status: 200 OK code: 200 - duration: 85.83129ms - - id: 30 + duration: 40.388834ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1500,8 +1894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1511,7 +1905,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -1520,9 +1914,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:36 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1530,11 +1924,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b5f88d4-8aa1-4f05-b014-f50d26381344 + - 8368a96b-5624-46fd-bb82-76d33e25455b status: 200 OK code: 200 - duration: 144.504542ms - - id: 31 + duration: 171.088625ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1549,8 +1943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1560,7 +1954,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -1569,9 +1963,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1579,11 +1973,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecd43051-bb72-45fd-b326-6d89b308c53c + - 03e442fb-9bfd-4f07-9076-825d85da5449 status: 200 OK code: 200 - duration: 124.465801ms - - id: 32 + duration: 78.583417ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1598,8 +1992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/baef0419-58b1-4a71-9bb4-6e40aefda46e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/e33579ba-a7f0-4c02-acd8-f50a455b4621 method: GET response: proto: HTTP/2.0 @@ -1607,20 +2001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 388 uncompressed: false - body: '{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"}' + body: '{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"}' headers: Content-Length: - - "390" + - "388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1628,11 +2022,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d4ab25a-c188-465e-ac4d-7c5656c0e90a + - 364fa28b-c53f-435e-b757-3ff75fbd6b7a status: 200 OK code: 200 - duration: 76.411537ms - - id: 33 + duration: 43.808916ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1647,8 +2041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/b1a4f7bb-2fac-4376-adc4-189807a14886 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e method: GET response: proto: HTTP/2.0 @@ -1656,20 +2050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.043045Z","custom_routes_propagation_enabled":false,"id":"b1a4f7bb-2fac-4376-adc4-189807a14886","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T15:08:03.043045Z"}' + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":true,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.943798Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1677,11 +2071,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e3e03b7-1f31-421b-940b-a453d734353b + - aa0ebd93-89cf-4923-b29a-8a56dfba52e9 status: 200 OK code: 200 - duration: 95.486231ms - - id: 34 + duration: 67.779833ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1696,8 +2090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -1705,20 +2099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1726,11 +2120,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d9ecc611-7d2e-424c-a07f-6f89f9ce1711 + - 9be7a3b1-e806-42d6-b723-687c1ba76780 status: 200 OK code: 200 - duration: 48.039298ms - - id: 35 + duration: 41.839708ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -1745,8 +2139,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/81e18a36-837f-4ce0-8e62-29232a3e926c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2 method: GET response: proto: HTTP/2.0 @@ -1756,7 +2150,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.234262Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"81e18a36-837f-4ce0-8e62-29232a3e926c","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2025-05-16T15:08:03.234262Z","id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.1.0/24","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"},{"created_at":"2025-05-16T15:08:03.234262Z","id":"e03ed66a-62f7-4f39-b1c2-2accd32bfcc5","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd68:d440:21c4:509f::/64","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}],"tags":[],"updated_at":"2025-05-16T15:08:16.470476Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: '{"created_at":"2025-06-30T15:11:38.142145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2025-06-30T15:11:38.142145Z","id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"},{"created_at":"2025-06-30T15:11:38.142145Z","id":"2313843b-88bd-4303-a803-a903359541c4","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e916::/64","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}],"tags":[],"updated_at":"2025-06-30T15:12:02.230589Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}' headers: Content-Length: - "1064" @@ -1765,9 +2159,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,11 +2169,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cfc95b9-3b4c-4026-8f75-c88e10ab63d7 + - cd6d3e1a-f2c6-4c85-80c5-a843b92336ce status: 200 OK code: 200 - duration: 39.226055ms - - id: 36 + duration: 81.990875ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -1794,8 +2188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -1805,7 +2199,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}' headers: Content-Length: - "416" @@ -1814,9 +2208,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,11 +2218,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef04cfe3-8bd0-4cf1-bc6b-5335bc319fb4 + - 30a7ab66-de5e-45f7-ba33-9a086a0ff5d8 status: 200 OK code: 200 - duration: 80.338534ms - - id: 37 + duration: 76.930209ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -1843,8 +2237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -1852,20 +2246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1873,11 +2267,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d39e54a6-6335-4402-a8fb-955a5e83dcca + - af13799e-19a9-4778-8fb3-09da9e5e3690 status: 200 OK code: 200 - duration: 41.991858ms - - id: 38 + duration: 43.697458ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -1892,8 +2286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -1903,7 +2297,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -1912,9 +2306,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1922,11 +2316,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98a8b59d-9fe0-4fd4-af2e-bdab24f47247 + - 68e78375-5fa4-4f15-ba08-5cf3a73d737c status: 200 OK code: 200 - duration: 199.950351ms - - id: 39 + duration: 139.896083ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -1941,8 +2335,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=81e18a36-837f-4ce0-8e62-29232a3e926c&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1952,7 +2346,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -1961,9 +2355,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1971,11 +2365,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da5eed9f-9453-4253-ac98-5126ed1c6d20 + - 8dad7b51-3230-48a1-aec5-fadfd158fbc2 status: 200 OK code: 200 - duration: 150.97023ms - - id: 40 + duration: 125.961333ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -1990,8 +2384,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc/certificate method: GET response: proto: HTTP/2.0 @@ -2001,7 +2395,7 @@ interactions: trailer: {} content_length: 1735 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRm9kY3dBbTBtUEd4T3RlRHRyNStMYTN0WEJJd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOVEUyTVRVd09UQTNXaGNOTXpVd05URTBNVFV3T1RBM1dqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxuRnB5S3d6YmRZWGg5YjVJZ0pVTkNHYy9aSnUzMEFNY2kwWFQzd040aExwbTAyOFBTRU1weGkKTHpVTU5CSVJxT0xzT2NkcFFJakZjeEZ1blBSTGl5Mm5KQlNwYTljS1RuNUk4YmxCcUJheCsrSXdHUys5cEhFRAowQWdFUHlldlJWb1lqMVRIdERsZ1B2RCsrV2NGMysxd3BlMFhxYzVTV0c0cHlrQXgzUHpiQkNLcDVtb2hxSUdoCnBxZlRmMVJsZml1MmdnNzRKRUpnY1kwdDF2OUhBVi91Tytwb3FQSkZpUGcrdTlHdmNZQXJTM2tKNTdvZEhySHUKckU3U0s1NjBYNFUrc1MvWXVmK1RsRTNNSHN6U0phc1NjeWFydmM1T2trSVl5dVNybG9aUjZCWWVqNzQ4VDNvdwo2bVZ5Mlp4S3M4UkVzMTNHaW9nb3F1N3VWMko5dVZjQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzlIZTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRE81Ukh2STMKTG40V2lRRFhxMklxSzdQSi8rZFlCNC81TnZ3TXRhcTVoeS81SWcyQ2dLcWVGNVMxWFh3Y2RBRWFWcWpaK3FDTQpXVHltcTRWYU95Q0dHd1lHMVM2ZmhPUEhTM1FHSHQwWFpTRlVMWnM0eGlZL01CMTlWbFdJZnVSeVUrMlkzTE0rCm84bVdTQW9qQm9zaGJHSEphSVlZUlJYOFlHcHZnRmp0Z2VaUk9INTFNN1FsMGdIMk40ZlJzcHk3V1MwQkFrYm4KRXRkckFtOFZmWDY1S0lrZk5rcUFSQnF0SkJUM3BwWnV6TkpQb3Vob09xanRFUTFNNjV4WFlDNjRYVUlsUFFCdApCTUNoc25Ic3h0Z1JwODd3N2pIbTJKdDk4UU1LT1F5YkFXQ2NQK29TaDdmZlQyMENQVXNiSUNJRS9neG1iV2loCjhBOGM2MjZmYmt2VVl3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVWkd1cDNkM2I3QTVhRW1QcDBySDc0dTY4ZTBVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOak13TVRVeE1qVTJXaGNOTXpVd05qSTRNVFV4TWpVMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU1lSzc1T0ZaU3NNTmRtUE1tTXZYNHgzT2dtYk9zVWdxeEFsUm1vOVZHT2pKaW41OTB0VFR2ZVYKaXl5alNiQXVOQW90UXhITUNHcXVtTXFoMHhuZ3VCeVk1YzlNU0p3WFNqb3JiL3UrS1ZQaVZPeVhYMnpka3ZqOApMN3lTZGVFcEdUK2RHUFExSE9yY29oZ3QyUXRuYmt5VjA0UHJwMCtTanV3RE1UVThySytaNVRCZGJuOTYxZlhkClNOa3RuNldxN2JmeEw3RGJmM2NWVjRlVEJQLzdnSDloOWNZTmNWd1FrSnp2T3N5UFNyTnk4cGJLYjhPMStwV20KM1liaHNqbDREbUp2d25kR0lkVVdVZmVZOTdobVhnMWt3WS9XTGRST3IvOUFvVVRJaHZUUXZsKzhWejUwdVNDcQpvUjF3a3VrZWIrMExrMXh4U1J5TExzSkk4R1dmQm1zQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2SVljRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRTEzUFgwVTAKZjFuRmJuT3FDT1VYc2xSTURncjN1RTA3Q2xEYmVqTWUxQ2J0WC95aWdJejg2Q1FVTG5NOU9JaDNpQWsvZlZqRwpDeEI0TDJpLzZYQmZQUFdFNzIvdDdGaUtHZFdCMldFSnZydHVBUnhFbGw1NTRzdzVrUGFkQ29aRWVMWlN2RnJjCnVKUW9XVWs0MWw0bzBHWHdRakhzSGwyVGZkYUxiRUlRQVRUTkN0STVpVm5VQk5jSjBPSTdPcWRwcnBVemtjeHQKREIyQzRXaUZYUWlwOEk2SkttZ0k4YUhFRzU3dW5hcDFZdVh1RkEvM25SdXJ5WmhheE8wVC9sMnE1aWxpaGY2TQpLNGdxeGhvbnJWYlVMMSsyYWdWM0U0QUpCL0doUzcrNngvd0FGa29tcUt4MlZMakwya1N6N3JHYmFsWnlpcnNUCjZaMkI2aklzMzF2dStBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1735" @@ -2010,9 +2404,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2020,11 +2414,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9514054b-55e7-47fc-8cf2-82337fea4733 + - ab9d2984-535b-4cc7-82f0-5a92fca39ae8 status: 200 OK code: 200 - duration: 151.76381ms - - id: 41 + duration: 124.835916ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2039,8 +2433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2050,7 +2444,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -2059,9 +2453,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:37 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2069,11 +2463,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da93dc74-2ac3-4551-84da-4f0ceb8baaab + - 97c732f4-7be2-4beb-a7f2-12c1b6f3438e status: 200 OK code: 200 - duration: 70.993711ms - - id: 42 + duration: 78.557625ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2088,8 +2482,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/206c264c-839f-4995-95a4-5474bac6d936 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/a7bbfe37-196c-49f6-afb8-7937c137e897 method: GET response: proto: HTTP/2.0 @@ -2099,7 +2493,7 @@ interactions: trailer: {} content_length: 283 uncompressed: false - body: '{"created_at":"2025-05-16T15:10:36.302389Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"206c264c-839f-4995-95a4-5474bac6d936","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-05-16T15:10:36.302389Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:14:11.293366Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"a7bbfe37-196c-49f6-afb8-7937c137e897","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:14:11.293366Z","zone":"nl-ams-1"}' headers: Content-Length: - "283" @@ -2108,9 +2502,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2118,11 +2512,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 034731ad-f706-49c6-8b09-b3a0e1a4730f + - fee0635d-9f95-47b6-adca-4943e743f92d status: 200 OK code: 200 - duration: 44.081532ms - - id: 43 + duration: 58.195667ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2137,8 +2531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2148,7 +2542,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -2157,9 +2551,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2167,11 +2561,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71578fde-ad2f-43c1-b2af-792c4d4db809 + - 46278a4e-6d36-411a-b16b-6093000ec522 status: 200 OK code: 200 - duration: 81.481684ms - - id: 44 + duration: 75.062ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2186,8 +2580,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/206c264c-839f-4995-95a4-5474bac6d936 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/a7bbfe37-196c-49f6-afb8-7937c137e897 method: GET response: proto: HTTP/2.0 @@ -2197,7 +2591,7 @@ interactions: trailer: {} content_length: 283 uncompressed: false - body: '{"created_at":"2025-05-16T15:10:36.302389Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"206c264c-839f-4995-95a4-5474bac6d936","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-05-16T15:10:36.302389Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:14:11.293366Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"a7bbfe37-196c-49f6-afb8-7937c137e897","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:14:11.293366Z","zone":"nl-ams-1"}' headers: Content-Length: - "283" @@ -2206,9 +2600,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2216,11 +2610,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7f57080d-19a8-4c27-9dfc-40142d20db13 + - f2dc2402-8582-4bc4-838c-455ae4aa514f status: 200 OK code: 200 - duration: 44.499241ms - - id: 45 + duration: 47.57825ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2235,8 +2629,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/baef0419-58b1-4a71-9bb4-6e40aefda46e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -2244,20 +2638,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 1309 uncompressed: false - body: '{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "390" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,11 +2659,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7c8098d-86b7-46ac-9c36-2508c7714359 + - 1feaaec2-663d-4d9d-a421-01f859824edc status: 200 OK code: 200 - duration: 47.540338ms - - id: 46 + duration: 50.891208ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2284,8 +2678,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/b1a4f7bb-2fac-4376-adc4-189807a14886 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/e33579ba-a7f0-4c02-acd8-f50a455b4621 method: GET response: proto: HTTP/2.0 @@ -2293,20 +2687,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 388 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.043045Z","custom_routes_propagation_enabled":false,"id":"b1a4f7bb-2fac-4376-adc4-189807a14886","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T15:08:03.043045Z"}' + body: '{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"}' headers: Content-Length: - - "394" + - "388" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2314,11 +2708,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46fbd037-23cb-4e89-a03b-4784e731bb7e + - 48c8e4f6-b395-4c24-b23b-7c0846bf4828 status: 200 OK code: 200 - duration: 79.444599ms - - id: 47 + duration: 78.101291ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2333,8 +2727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e method: GET response: proto: HTTP/2.0 @@ -2342,20 +2736,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 393 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":true,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.943798Z"}' headers: Content-Length: - - "1311" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2363,11 +2757,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93847fec-4f31-489b-8bda-3166c9575c83 + - 72cf660e-6fc3-4ec2-ae0d-18c7eda5687e status: 200 OK code: 200 - duration: 79.321759ms - - id: 48 + duration: 91.306291ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2382,8 +2776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -2393,7 +2787,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}' headers: Content-Length: - "416" @@ -2402,9 +2796,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,11 +2806,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9ccdbbc-b72d-4006-b736-92ad0f865f31 + - 64869c27-7544-4726-b0ed-d4969229575b status: 200 OK code: 200 - duration: 91.751281ms - - id: 49 + duration: 91.870208ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2431,8 +2825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/81e18a36-837f-4ce0-8e62-29232a3e926c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -2440,20 +2834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1309 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.234262Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"81e18a36-837f-4ce0-8e62-29232a3e926c","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2025-05-16T15:08:03.234262Z","id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.1.0/24","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"},{"created_at":"2025-05-16T15:08:03.234262Z","id":"e03ed66a-62f7-4f39-b1c2-2accd32bfcc5","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd68:d440:21c4:509f::/64","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}],"tags":[],"updated_at":"2025-05-16T15:08:16.470476Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1064" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,11 +2855,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c15b127f-9ba2-474c-b567-0e10360bdd01 + - 89038969-9549-4ac6-a840-078a69a379d9 status: 200 OK code: 200 - duration: 40.743662ms - - id: 50 + duration: 43.881083ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2480,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -2489,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1316 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "1311" + - "1316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,11 +2904,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a58c91a-07fe-4163-accd-76ec39716256 + - 9d48c2f6-9941-4cad-8530-751bf130efbd status: 200 OK code: 200 - duration: 88.780515ms - - id: 51 + duration: 152.977125ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2529,8 +2923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2 method: GET response: proto: HTTP/2.0 @@ -2538,20 +2932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1316 + content_length: 1064 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:38.142145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2025-06-30T15:11:38.142145Z","id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"},{"created_at":"2025-06-30T15:11:38.142145Z","id":"2313843b-88bd-4303-a803-a903359541c4","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e916::/64","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}],"tags":[],"updated_at":"2025-06-30T15:12:02.230589Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}' headers: Content-Length: - - "1316" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:38 GMT + - Mon, 30 Jun 2025 15:14:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,11 +2953,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b3f54d2-244b-4bc3-aed7-dd63bdb654c6 + - f5c2ba94-379e-4966-aaae-83f86bac3ba1 status: 200 OK code: 200 - duration: 178.048328ms - - id: 52 + duration: 64.418417ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2578,8 +2972,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=81e18a36-837f-4ce0-8e62-29232a3e926c&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=80b74932-27a3-4e34-aaef-2601be3dadc7&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/nl-ams/ips?order_by=created_at_desc&private_network_id=9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2bf31e99-bdf2-4d96-a67e-d48c69656a8e&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2589,7 +2983,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-05-16T15:08:09.491265Z","id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","resource":{"id":"80b74932-27a3-4e34-aaef-2601be3dadc7","mac_address":"02:00:00:17:CC:7B","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4"},"tags":[],"updated_at":"2025-05-16T15:08:10.084438Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"192.168.1.2/24","created_at":"2025-06-30T15:11:54.676445Z","id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","resource":{"id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","mac_address":"02:00:00:12:85:D5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd"},"tags":[],"updated_at":"2025-06-30T15:11:55.336353Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -2598,9 +2992,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:39 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,11 +3002,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5495b67-0c8b-44ec-bc5e-d64b5bf926ba + - 6761c5db-2465-4a19-be50-85612a42dbe0 status: 200 OK code: 200 - duration: 115.117613ms - - id: 53 + duration: 71.381292ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2627,8 +3021,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc/certificate method: GET response: proto: HTTP/2.0 @@ -2638,7 +3032,7 @@ interactions: trailer: {} content_length: 1735 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRm9kY3dBbTBtUEd4T3RlRHRyNStMYTN0WEJJd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOVEUyTVRVd09UQTNXaGNOTXpVd05URTBNVFV3T1RBM1dqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxuRnB5S3d6YmRZWGg5YjVJZ0pVTkNHYy9aSnUzMEFNY2kwWFQzd040aExwbTAyOFBTRU1weGkKTHpVTU5CSVJxT0xzT2NkcFFJakZjeEZ1blBSTGl5Mm5KQlNwYTljS1RuNUk4YmxCcUJheCsrSXdHUys5cEhFRAowQWdFUHlldlJWb1lqMVRIdERsZ1B2RCsrV2NGMysxd3BlMFhxYzVTV0c0cHlrQXgzUHpiQkNLcDVtb2hxSUdoCnBxZlRmMVJsZml1MmdnNzRKRUpnY1kwdDF2OUhBVi91Tytwb3FQSkZpUGcrdTlHdmNZQXJTM2tKNTdvZEhySHUKckU3U0s1NjBYNFUrc1MvWXVmK1RsRTNNSHN6U0phc1NjeWFydmM1T2trSVl5dVNybG9aUjZCWWVqNzQ4VDNvdwo2bVZ5Mlp4S3M4UkVzMTNHaW9nb3F1N3VWMko5dVZjQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzlIZTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRE81Ukh2STMKTG40V2lRRFhxMklxSzdQSi8rZFlCNC81TnZ3TXRhcTVoeS81SWcyQ2dLcWVGNVMxWFh3Y2RBRWFWcWpaK3FDTQpXVHltcTRWYU95Q0dHd1lHMVM2ZmhPUEhTM1FHSHQwWFpTRlVMWnM0eGlZL01CMTlWbFdJZnVSeVUrMlkzTE0rCm84bVdTQW9qQm9zaGJHSEphSVlZUlJYOFlHcHZnRmp0Z2VaUk9INTFNN1FsMGdIMk40ZlJzcHk3V1MwQkFrYm4KRXRkckFtOFZmWDY1S0lrZk5rcUFSQnF0SkJUM3BwWnV6TkpQb3Vob09xanRFUTFNNjV4WFlDNjRYVUlsUFFCdApCTUNoc25Ic3h0Z1JwODd3N2pIbTJKdDk4UU1LT1F5YkFXQ2NQK29TaDdmZlQyMENQVXNiSUNJRS9neG1iV2loCjhBOGM2MjZmYmt2VVl3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVWkd1cDNkM2I3QTVhRW1QcDBySDc0dTY4ZTBVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOak13TVRVeE1qVTJXaGNOTXpVd05qSTRNVFV4TWpVMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU1lSzc1T0ZaU3NNTmRtUE1tTXZYNHgzT2dtYk9zVWdxeEFsUm1vOVZHT2pKaW41OTB0VFR2ZVYKaXl5alNiQXVOQW90UXhITUNHcXVtTXFoMHhuZ3VCeVk1YzlNU0p3WFNqb3JiL3UrS1ZQaVZPeVhYMnpka3ZqOApMN3lTZGVFcEdUK2RHUFExSE9yY29oZ3QyUXRuYmt5VjA0UHJwMCtTanV3RE1UVThySytaNVRCZGJuOTYxZlhkClNOa3RuNldxN2JmeEw3RGJmM2NWVjRlVEJQLzdnSDloOWNZTmNWd1FrSnp2T3N5UFNyTnk4cGJLYjhPMStwV20KM1liaHNqbDREbUp2d25kR0lkVVdVZmVZOTdobVhnMWt3WS9XTGRST3IvOUFvVVRJaHZUUXZsKzhWejUwdVNDcQpvUjF3a3VrZWIrMExrMXh4U1J5TExzSkk4R1dmQm1zQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2SVljRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRTEzUFgwVTAKZjFuRmJuT3FDT1VYc2xSTURncjN1RTA3Q2xEYmVqTWUxQ2J0WC95aWdJejg2Q1FVTG5NOU9JaDNpQWsvZlZqRwpDeEI0TDJpLzZYQmZQUFdFNzIvdDdGaUtHZFdCMldFSnZydHVBUnhFbGw1NTRzdzVrUGFkQ29aRWVMWlN2RnJjCnVKUW9XVWs0MWw0bzBHWHdRakhzSGwyVGZkYUxiRUlRQVRUTkN0STVpVm5VQk5jSjBPSTdPcWRwcnBVemtjeHQKREIyQzRXaUZYUWlwOEk2SkttZ0k4YUhFRzU3dW5hcDFZdVh1RkEvM25SdXJ5WmhheE8wVC9sMnE1aWxpaGY2TQpLNGdxeGhvbnJWYlVMMSsyYWdWM0U0QUpCL0doUzcrNngvd0FGa29tcUt4MlZMakwya1N6N3JHYmFsWnlpcnNUCjZaMkI2aklzMzF2dStBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1735" @@ -2647,9 +3041,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:39 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,11 +3051,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57ace7f8-78f1-453e-b76b-be5040e29895 + - 86226b8a-a5d0-4372-ac37-95f1b0ce045a status: 200 OK code: 200 - duration: 157.752568ms - - id: 54 + duration: 124.2965ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -2676,8 +3070,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/206c264c-839f-4995-95a4-5474bac6d936 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/a7bbfe37-196c-49f6-afb8-7937c137e897 method: GET response: proto: HTTP/2.0 @@ -2687,7 +3081,7 @@ interactions: trailer: {} content_length: 283 uncompressed: false - body: '{"created_at":"2025-05-16T15:10:36.302389Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"206c264c-839f-4995-95a4-5474bac6d936","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-05-16T15:10:36.302389Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:14:11.293366Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"a7bbfe37-196c-49f6-afb8-7937c137e897","private_ip":"192.168.1.2","private_port":5432,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:14:11.293366Z","zone":"nl-ams-1"}' headers: Content-Length: - "283" @@ -2696,9 +3090,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:39 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,11 +3100,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72177c0a-7649-408e-83d1-b7bc450df1b4 + - c8b2d0cc-9d41-4e27-83de-dc225344cea5 status: 200 OK code: 200 - duration: 52.534403ms - - id: 55 + duration: 46.298708ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -2725,8 +3119,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -2734,20 +3128,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:39 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,11 +3149,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2264cd86-e0a9-4d71-9531-07c0c9044fa5 + - 1efa5f28-bc2c-4bcf-8fab-0b32b4a1c5ad status: 200 OK code: 200 - duration: 111.64991ms - - id: 56 + duration: 49.123042ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -2774,8 +3168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/206c264c-839f-4995-95a4-5474bac6d936 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/pat-rules/a7bbfe37-196c-49f6-afb8-7937c137e897 method: DELETE response: proto: HTTP/2.0 @@ -2792,9 +3186,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:39 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2802,11 +3196,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4bc13ac-f278-446e-8398-f43db9de7230 + - e7752ce7-dc86-45e6-b59c-ca06fadaa384 status: 204 No Content code: 204 - duration: 81.262897ms - - id: 57 + duration: 70.43ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -2821,8 +3215,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -2830,20 +3224,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1311 + content_length: 1309 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "1311" + - "1309" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2851,11 +3245,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6a9b0a8-ea89-4b1d-af04-941bf6f2e99e + - 669ef623-ad0b-4e68-96da-5260895a6ce1 status: 200 OK code: 200 - duration: 43.916395ms - - id: 58 + duration: 41.515416ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -2870,8 +3264,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -2881,7 +3275,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"ready","updated_at":"2025-05-16T15:08:20.424281Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:12:06.531928Z","zone":"nl-ams-1"}' headers: Content-Length: - "416" @@ -2890,9 +3284,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2900,11 +3294,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 42deecb7-c213-4de8-9a4f-6e6ebe931c83 + - 0e46c28a-4ddc-4c5b-bb95-b152ad661f94 status: 200 OK code: 200 - duration: 79.098864ms - - id: 59 + duration: 82.677958ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -2919,29 +3313,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 1316 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T15:10:40.156090Z","zone":"nl-ams-1"}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - - "420" + - "1316" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2949,11 +3343,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 096aad0f-76b7-4d22-ad22-0d1125ba75d6 + - e499ef6f-0986-4654-a59b-050cef53032e status: 200 OK code: 200 - duration: 90.397459ms - - id: 60 + duration: 176.383459ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -2968,29 +3362,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1316 + content_length: 420 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:14:13.719739Z","zone":"nl-ams-1"}' headers: Content-Length: - - "1316" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2998,11 +3392,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c930a1a1-fb43-4613-841f-05140e31cd9a + - bbf95965-0e94-4c1d-8151-de9d8de57afe status: 200 OK code: 200 - duration: 181.928667ms - - id: 61 + duration: 110.978042ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3017,8 +3411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -3028,7 +3422,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:09.555794Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"80b74932-27a3-4e34-aaef-2601be3dadc7","ipam_ip_id":"910e4f3d-3a6f-494d-9d20-419c2a7a6685","mac_address":"02:00:00:17:CC:7B","masquerade_enabled":true,"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T15:10:40.156090Z","zone":"nl-ams-1"}' + body: '{"created_at":"2025-06-30T15:11:54.772431Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","ipam_ip_id":"dd970aaf-e1da-4a41-b807-bd6e0cbb5060","mac_address":"02:00:00:12:85:D5","masquerade_enabled":true,"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:14:13.719739Z","zone":"nl-ams-1"}' headers: Content-Length: - "420" @@ -3037,9 +3431,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3047,11 +3441,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d755b640-0669-4c13-821c-ac085fe8c685 + - 8f3bf167-95c8-4ccd-bc84-ca2769e41ac7 status: 200 OK code: 200 - duration: 82.662593ms - - id: 62 + duration: 78.906417ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3066,8 +3460,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3077,7 +3471,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -3086,9 +3480,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3096,11 +3490,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cba8a6d8-5436-43b7-95a0-4543920c8115 + - 123133c3-3a30-45a4-92d5-ab763e839edd status: 200 OK code: 200 - duration: 199.587874ms - - id: 63 + duration: 129.684625ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3117,8 +3511,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: PATCH response: proto: HTTP/2.0 @@ -3128,7 +3522,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -3137,9 +3531,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3147,11 +3541,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b39aa0d-76d5-459c-b43f-fdc6e5f2dc3e + - 58efa551-234f-4af3-90ab-f207ab13136b status: 200 OK code: 200 - duration: 148.439083ms - - id: 64 + duration: 276.779833ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3166,8 +3560,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3177,7 +3571,7 @@ interactions: trailer: {} content_length: 1316 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1316" @@ -3186,9 +3580,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:40 GMT + - Mon, 30 Jun 2025 15:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3196,11 +3590,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0974d455-ef92-4332-b395-ed945ff8fba5 + - bd800a13-af87-49cb-bd86-e457c06f114d status: 200 OK code: 200 - duration: 279.418352ms - - id: 65 + duration: 187.812708ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3215,8 +3609,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/c75c88db-abc0-4a72-9788-885a5c0703d5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/endpoints/2c1d60e6-f725-4642-b8ef-af49d9ba610c method: DELETE response: proto: HTTP/2.0 @@ -3233,9 +3627,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:41 GMT + - Mon, 30 Jun 2025 15:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3243,11 +3637,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e6337bc-5c01-45a7-a945-1ba1cd8f000e + - ef44b6a1-8873-41dd-9880-308d8fb71327 status: 204 No Content code: 204 - duration: 330.073213ms - - id: 66 + duration: 272.373583ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3262,8 +3656,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3273,7 +3667,7 @@ interactions: trailer: {} content_length: 1322 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c75c88db-abc0-4a72-9788-885a5c0703d5","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"2c1d60e6-f725-4642-b8ef-af49d9ba610c","ip":"192.168.1.254","name":null,"port":5432,"private_network":{"private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","provisioning_mode":"static","service_ip":"192.168.1.254/24","zone":"nl-ams-1"}}],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1322" @@ -3282,9 +3676,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:41 GMT + - Mon, 30 Jun 2025 15:14:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3292,11 +3686,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 069ad16e-1791-4aa3-aea5-0b5144d08c52 + - a8bfeaac-c0b1-4cf2-a132-2d682368a434 status: 200 OK code: 200 - duration: 154.230244ms - - id: 67 + duration: 172.618917ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3311,8 +3705,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/80b74932-27a3-4e34-aaef-2601be3dadc7 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateway-networks/2bf31e99-bdf2-4d96-a67e-d48c69656a8e method: GET response: proto: HTTP/2.0 @@ -3322,7 +3716,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"80b74932-27a3-4e34-aaef-2601be3dadc7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"2bf31e99-bdf2-4d96-a67e-d48c69656a8e","type":"not_found"}' headers: Content-Length: - "136" @@ -3331,9 +3725,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:45 GMT + - Mon, 30 Jun 2025 15:14:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3341,11 +3735,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d9afd32-6ee7-40ff-8a62-f536b2482c64 + - 3b80b5a1-73ae-4f3c-895c-ee5c982f52e2 status: 404 Not Found code: 404 - duration: 41.950421ms - - id: 68 + duration: 48.662542ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3360,8 +3754,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -3369,20 +3763,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 895 + content_length: 893 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:08:20.675421Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:12:06.785608Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "895" + - "893" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:45 GMT + - Mon, 30 Jun 2025 15:14:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3390,11 +3784,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cea72375-3270-4c2e-8010-a45e188750e7 + - 511d81c0-0c8a-484e-97ba-1aaca10a6fc4 status: 200 OK code: 200 - duration: 51.504644ms - - id: 69 + duration: 55.735291ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3409,8 +3803,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac?delete_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -3418,20 +3812,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 896 + content_length: 894 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T15:08:03.969575Z","gateway_networks":[],"id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","ipv4":{"address":"51.15.47.221","created_at":"2025-05-16T15:08:03.660419Z","gateway_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","id":"baef0419-58b1-4a71-9bb4-6e40aefda46e","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"221-47-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T15:08:03.660419Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T15:10:45.462261Z","version":"0.7.4","zone":"nl-ams-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:11:38.924103Z","gateway_networks":[],"id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","ipv4":{"address":"51.15.73.63","created_at":"2025-06-30T15:11:38.606065Z","gateway_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","id":"e33579ba-a7f0-4c02-acd8-f50a455b4621","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"63-73-15-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:11:38.606065Z","zone":"nl-ams-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:14:18.992863Z","version":"0.7.4","zone":"nl-ams-1"}' headers: Content-Length: - - "896" + - "894" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:45 GMT + - Mon, 30 Jun 2025 15:14:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3439,11 +3833,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed3c511f-9853-4f0d-99d1-5779136943d6 + - 73c47e73-220a-4479-bd3c-2ec095c1263e status: 200 OK code: 200 - duration: 137.820045ms - - id: 70 + duration: 78.399625ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3458,8 +3852,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/fa4ff311-6456-4dc1-9f43-e2af26662dac + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/gateways/4a26e138-bcf7-43ea-9a1b-3fd5e76e008a method: GET response: proto: HTTP/2.0 @@ -3469,7 +3863,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"fa4ff311-6456-4dc1-9f43-e2af26662dac","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"4a26e138-bcf7-43ea-9a1b-3fd5e76e008a","type":"not_found"}' headers: Content-Length: - "128" @@ -3478,9 +3872,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:45 GMT + - Mon, 30 Jun 2025 15:14:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3488,11 +3882,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e909eec-8194-445f-9b9e-b390b048fd3b + - d6db3842-85a3-45ff-9bc2-5f9f700290e5 status: 404 Not Found code: 404 - duration: 39.289513ms - - id: 71 + duration: 45.314334ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3507,8 +3901,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/baef0419-58b1-4a71-9bb4-6e40aefda46e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/nl-ams-1/ips/e33579ba-a7f0-4c02-acd8-f50a455b4621 method: DELETE response: proto: HTTP/2.0 @@ -3525,9 +3919,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:10:46 GMT + - Mon, 30 Jun 2025 15:14:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3535,11 +3929,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab66e33e-9700-4407-8109-ce87fa099842 + - 9ff74846-ddea-4156-8818-44325a39c353 status: 204 No Content code: 204 - duration: 816.814485ms - - id: 72 + duration: 983.994375ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3554,8 +3948,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3565,7 +3959,7 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1067" @@ -3574,9 +3968,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:11 GMT + - Mon, 30 Jun 2025 15:14:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3584,11 +3978,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48f51704-5a5a-4494-9a4a-d84f7e2001eb + - ebc0f22c-f6d3-4600-8f07-8a8afe6cfb8e status: 200 OK code: 200 - duration: 147.906854ms - - id: 73 + duration: 153.031834ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3603,8 +3997,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3614,7 +4008,7 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1067" @@ -3623,9 +4017,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:11 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3633,11 +4027,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a493a77-77d3-403c-adcd-1b2f949c9d58 + - 10727840-9767-4a13-889d-170219d3d583 status: 200 OK code: 200 - duration: 149.963117ms - - id: 74 + duration: 133.939416ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3652,8 +4046,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc/certificate method: GET response: proto: HTTP/2.0 @@ -3663,7 +4057,7 @@ interactions: trailer: {} content_length: 1735 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRm9kY3dBbTBtUEd4T3RlRHRyNStMYTN0WEJJd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOVEUyTVRVd09UQTNXaGNOTXpVd05URTBNVFV3T1RBM1dqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxuRnB5S3d6YmRZWGg5YjVJZ0pVTkNHYy9aSnUzMEFNY2kwWFQzd040aExwbTAyOFBTRU1weGkKTHpVTU5CSVJxT0xzT2NkcFFJakZjeEZ1blBSTGl5Mm5KQlNwYTljS1RuNUk4YmxCcUJheCsrSXdHUys5cEhFRAowQWdFUHlldlJWb1lqMVRIdERsZ1B2RCsrV2NGMysxd3BlMFhxYzVTV0c0cHlrQXgzUHpiQkNLcDVtb2hxSUdoCnBxZlRmMVJsZml1MmdnNzRKRUpnY1kwdDF2OUhBVi91Tytwb3FQSkZpUGcrdTlHdmNZQXJTM2tKNTdvZEhySHUKckU3U0s1NjBYNFUrc1MvWXVmK1RsRTNNSHN6U0phc1NjeWFydmM1T2trSVl5dVNybG9aUjZCWWVqNzQ4VDNvdwo2bVZ5Mlp4S3M4UkVzMTNHaW9nb3F1N3VWMko5dVZjQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzlIZTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRE81Ukh2STMKTG40V2lRRFhxMklxSzdQSi8rZFlCNC81TnZ3TXRhcTVoeS81SWcyQ2dLcWVGNVMxWFh3Y2RBRWFWcWpaK3FDTQpXVHltcTRWYU95Q0dHd1lHMVM2ZmhPUEhTM1FHSHQwWFpTRlVMWnM0eGlZL01CMTlWbFdJZnVSeVUrMlkzTE0rCm84bVdTQW9qQm9zaGJHSEphSVlZUlJYOFlHcHZnRmp0Z2VaUk9INTFNN1FsMGdIMk40ZlJzcHk3V1MwQkFrYm4KRXRkckFtOFZmWDY1S0lrZk5rcUFSQnF0SkJUM3BwWnV6TkpQb3Vob09xanRFUTFNNjV4WFlDNjRYVUlsUFFCdApCTUNoc25Ic3h0Z1JwODd3N2pIbTJKdDk4UU1LT1F5YkFXQ2NQK29TaDdmZlQyMENQVXNiSUNJRS9neG1iV2loCjhBOGM2MjZmYmt2VVl3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVWkd1cDNkM2I3QTVhRW1QcDBySDc0dTY4ZTBVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOak13TVRVeE1qVTJXaGNOTXpVd05qSTRNVFV4TWpVMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU1lSzc1T0ZaU3NNTmRtUE1tTXZYNHgzT2dtYk9zVWdxeEFsUm1vOVZHT2pKaW41OTB0VFR2ZVYKaXl5alNiQXVOQW90UXhITUNHcXVtTXFoMHhuZ3VCeVk1YzlNU0p3WFNqb3JiL3UrS1ZQaVZPeVhYMnpka3ZqOApMN3lTZGVFcEdUK2RHUFExSE9yY29oZ3QyUXRuYmt5VjA0UHJwMCtTanV3RE1UVThySytaNVRCZGJuOTYxZlhkClNOa3RuNldxN2JmeEw3RGJmM2NWVjRlVEJQLzdnSDloOWNZTmNWd1FrSnp2T3N5UFNyTnk4cGJLYjhPMStwV20KM1liaHNqbDREbUp2d25kR0lkVVdVZmVZOTdobVhnMWt3WS9XTGRST3IvOUFvVVRJaHZUUXZsKzhWejUwdVNDcQpvUjF3a3VrZWIrMExrMXh4U1J5TExzSkk4R1dmQm1zQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2SVljRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRTEzUFgwVTAKZjFuRmJuT3FDT1VYc2xSTURncjN1RTA3Q2xEYmVqTWUxQ2J0WC95aWdJejg2Q1FVTG5NOU9JaDNpQWsvZlZqRwpDeEI0TDJpLzZYQmZQUFdFNzIvdDdGaUtHZFdCMldFSnZydHVBUnhFbGw1NTRzdzVrUGFkQ29aRWVMWlN2RnJjCnVKUW9XVWs0MWw0bzBHWHdRakhzSGwyVGZkYUxiRUlRQVRUTkN0STVpVm5VQk5jSjBPSTdPcWRwcnBVemtjeHQKREIyQzRXaUZYUWlwOEk2SkttZ0k4YUhFRzU3dW5hcDFZdVh1RkEvM25SdXJ5WmhheE8wVC9sMnE1aWxpaGY2TQpLNGdxeGhvbnJWYlVMMSsyYWdWM0U0QUpCL0doUzcrNngvd0FGa29tcUt4MlZMakwya1N6N3JHYmFsWnlpcnNUCjZaMkI2aklzMzF2dStBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1735" @@ -3672,9 +4066,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:11 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3682,11 +4076,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 030844bf-d7c5-4088-bc8c-1a20bca88022 + - 33d43ce5-e2b6-47c0-a4ff-0e79e911b0c2 status: 200 OK code: 200 - duration: 120.231345ms - - id: 75 + duration: 101.427625ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -3701,8 +4095,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/b1a4f7bb-2fac-4376-adc4-189807a14886 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e method: GET response: proto: HTTP/2.0 @@ -3710,20 +4104,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.043045Z","custom_routes_propagation_enabled":false,"id":"b1a4f7bb-2fac-4376-adc4-189807a14886","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T15:08:03.043045Z"}' + body: '{"created_at":"2025-06-30T15:11:37.810168Z","custom_routes_propagation_enabled":true,"id":"c1169f28-275b-4afb-88d0-7b729349fe3e","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":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:11:37.943798Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:12 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3731,11 +4125,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f625e83f-d9a7-467e-a24d-4ebe4f3a4e50 + - c077df09-eac5-4092-9d5c-c13e14d6e6b9 status: 200 OK code: 200 - duration: 42.07409ms - - id: 76 + duration: 44.247042ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -3750,8 +4144,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/81e18a36-837f-4ce0-8e62-29232a3e926c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2 method: GET response: proto: HTTP/2.0 @@ -3761,7 +4155,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-05-16T15:08:03.234262Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"81e18a36-837f-4ce0-8e62-29232a3e926c","name":"my_private_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"nl-ams","subnets":[{"created_at":"2025-05-16T15:08:03.234262Z","id":"0901ef2f-2689-4c13-8215-8b0dbd87b3f4","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"192.168.1.0/24","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"},{"created_at":"2025-05-16T15:08:03.234262Z","id":"e03ed66a-62f7-4f39-b1c2-2accd32bfcc5","private_network_id":"81e18a36-837f-4ce0-8e62-29232a3e926c","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd68:d440:21c4:509f::/64","updated_at":"2025-05-16T15:08:03.234262Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}],"tags":[],"updated_at":"2025-05-16T15:10:40.371055Z","vpc_id":"b1a4f7bb-2fac-4376-adc4-189807a14886"}' + body: '{"created_at":"2025-06-30T15:11:38.142145Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","subnets":[{"created_at":"2025-06-30T15:11:38.142145Z","id":"65772ff3-f815-4595-abb5-b4b08d0cc4dd","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"192.168.1.0/24","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"},{"created_at":"2025-06-30T15:11:38.142145Z","id":"2313843b-88bd-4303-a803-a903359541c4","private_network_id":"9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd2c:2ff0:469a:e916::/64","updated_at":"2025-06-30T15:11:38.142145Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}],"tags":[],"updated_at":"2025-06-30T15:14:13.967019Z","vpc_id":"c1169f28-275b-4afb-88d0-7b729349fe3e"}' headers: Content-Length: - "1064" @@ -3770,9 +4164,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:12 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3780,11 +4174,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 773cb111-804b-4525-8ace-8b459519efd6 + - d31f4e5c-fe61-4190-8539-629ae4a46203 status: 200 OK code: 200 - duration: 72.692633ms - - id: 77 + duration: 87.443166ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -3799,8 +4193,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3810,7 +4204,7 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1067" @@ -3819,9 +4213,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:12 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3829,11 +4223,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d129c5c-3717-4ed9-8d05-dde2550fb13f + - cf397be9-c5cb-4ad6-a586-af81503bcfe9 status: 200 OK code: 200 - duration: 153.085394ms - - id: 78 + duration: 148.526792ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -3848,8 +4242,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347/certificate + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc/certificate method: GET response: proto: HTTP/2.0 @@ -3859,7 +4253,7 @@ interactions: trailer: {} content_length: 1735 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVRm9kY3dBbTBtUEd4T3RlRHRyNStMYTN0WEJJd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOVEUyTVRVd09UQTNXaGNOTXpVd05URTBNVFV3T1RBM1dqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQUxuRnB5S3d6YmRZWGg5YjVJZ0pVTkNHYy9aSnUzMEFNY2kwWFQzd040aExwbTAyOFBTRU1weGkKTHpVTU5CSVJxT0xzT2NkcFFJakZjeEZ1blBSTGl5Mm5KQlNwYTljS1RuNUk4YmxCcUJheCsrSXdHUys5cEhFRAowQWdFUHlldlJWb1lqMVRIdERsZ1B2RCsrV2NGMysxd3BlMFhxYzVTV0c0cHlrQXgzUHpiQkNLcDVtb2hxSUdoCnBxZlRmMVJsZml1MmdnNzRKRUpnY1kwdDF2OUhBVi91Tytwb3FQSkZpUGcrdTlHdmNZQXJTM2tKNTdvZEhySHUKckU3U0s1NjBYNFUrc1MvWXVmK1RsRTNNSHN6U0phc1NjeWFydmM1T2trSVl5dVNybG9aUjZCWWVqNzQ4VDNvdwo2bVZ5Mlp4S3M4UkVzMTNHaW9nb3F1N3VWMko5dVZjQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNdzlIZTRjRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRE81Ukh2STMKTG40V2lRRFhxMklxSzdQSi8rZFlCNC81TnZ3TXRhcTVoeS81SWcyQ2dLcWVGNVMxWFh3Y2RBRWFWcWpaK3FDTQpXVHltcTRWYU95Q0dHd1lHMVM2ZmhPUEhTM1FHSHQwWFpTRlVMWnM0eGlZL01CMTlWbFdJZnVSeVUrMlkzTE0rCm84bVdTQW9qQm9zaGJHSEphSVlZUlJYOFlHcHZnRmp0Z2VaUk9INTFNN1FsMGdIMk40ZlJzcHk3V1MwQkFrYm4KRXRkckFtOFZmWDY1S0lrZk5rcUFSQnF0SkJUM3BwWnV6TkpQb3Vob09xanRFUTFNNjV4WFlDNjRYVUlsUFFCdApCTUNoc25Ic3h0Z1JwODd3N2pIbTJKdDk4UU1LT1F5YkFXQ2NQK29TaDdmZlQyMENQVXNiSUNJRS9neG1iV2loCjhBOGM2MjZmYmt2VVl3PT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURaakNDQWs2Z0F3SUJBZ0lVWkd1cDNkM2I3QTVhRW1QcDBySDc0dTY4ZTBVd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1dERUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RmpBVUJnTlZCQU1NRFRFNU1pNHhOamd1TVM0eU5UUXdIaGNOCk1qVXdOak13TVRVeE1qVTJXaGNOTXpVd05qSTRNVFV4TWpVMldqQllNUXN3Q1FZRFZRUUdFd0pHVWpFT01Bd0cKQTFVRUNBd0ZVR0Z5YVhNeERqQU1CZ05WQkFjTUJWQmhjbWx6TVJFd0R3WURWUVFLREFoVFkyRnNaWGRoZVRFVwpNQlFHQTFVRUF3d05NVGt5TGpFMk9DNHhMakkxTkRDQ0FTSXdEUVlKS29aSWh2Y05BUUVCQlFBRGdnRVBBRENDCkFRb0NnZ0VCQU1lSzc1T0ZaU3NNTmRtUE1tTXZYNHgzT2dtYk9zVWdxeEFsUm1vOVZHT2pKaW41OTB0VFR2ZVYKaXl5alNiQXVOQW90UXhITUNHcXVtTXFoMHhuZ3VCeVk1YzlNU0p3WFNqb3JiL3UrS1ZQaVZPeVhYMnpka3ZqOApMN3lTZGVFcEdUK2RHUFExSE9yY29oZ3QyUXRuYmt5VjA0UHJwMCtTanV3RE1UVThySytaNVRCZGJuOTYxZlhkClNOa3RuNldxN2JmeEw3RGJmM2NWVjRlVEJQLzdnSDloOWNZTmNWd1FrSnp2T3N5UFNyTnk4cGJLYjhPMStwV20KM1liaHNqbDREbUp2d25kR0lkVVdVZmVZOTdobVhnMWt3WS9XTGRST3IvOUFvVVRJaHZUUXZsKzhWejUwdVNDcQpvUjF3a3VrZWIrMExrMXh4U1J5TExzSkk4R1dmQm1zQ0F3RUFBYU1vTUNZd0pBWURWUjBSQkIwd0c0SU5NVGt5CkxqRTJPQzR4TGpJMU5JY0VNNTY2SVljRXdLZ0IvakFOQmdrcWhraUc5dzBCQVFzRkFBT0NBUUVBRTEzUFgwVTAKZjFuRmJuT3FDT1VYc2xSTURncjN1RTA3Q2xEYmVqTWUxQ2J0WC95aWdJejg2Q1FVTG5NOU9JaDNpQWsvZlZqRwpDeEI0TDJpLzZYQmZQUFdFNzIvdDdGaUtHZFdCMldFSnZydHVBUnhFbGw1NTRzdzVrUGFkQ29aRWVMWlN2RnJjCnVKUW9XVWs0MWw0bzBHWHdRakhzSGwyVGZkYUxiRUlRQVRUTkN0STVpVm5VQk5jSjBPSTdPcWRwcnBVemtjeHQKREIyQzRXaUZYUWlwOEk2SkttZ0k4YUhFRzU3dW5hcDFZdVh1RkEvM25SdXJ5WmhheE8wVC9sMnE1aWxpaGY2TQpLNGdxeGhvbnJWYlVMMSsyYWdWM0U0QUpCL0doUzcrNngvd0FGa29tcUt4MlZMakwya1N6N3JHYmFsWnlpcnNUCjZaMkI2aklzMzF2dStBPT0KLS0tLS1FTkQgQ0VSVElGSUNBVEUtLS0tLQo=","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1735" @@ -3868,9 +4262,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:12 GMT + - Mon, 30 Jun 2025 15:14:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3878,11 +4272,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59f57c4b-bb46-4de9-8861-3554b98c626d + - a3ddb4cf-cd89-4577-abca-e78c555c1f20 status: 200 OK code: 200 - duration: 110.690017ms - - id: 79 + duration: 97.093958ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -3897,8 +4291,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -3908,7 +4302,7 @@ interactions: trailer: {} content_length: 1067 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1067" @@ -3917,9 +4311,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:13 GMT + - Mon, 30 Jun 2025 15:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3927,11 +4321,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 79d2d703-204e-434b-84d7-560d36990e45 + - 939ffa11-25cb-4a24-9261-dd81148cb02a status: 200 OK code: 200 - duration: 119.406939ms - - id: 80 + duration: 182.618ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -3946,8 +4340,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: DELETE response: proto: HTTP/2.0 @@ -3957,7 +4351,7 @@ interactions: trailer: {} content_length: 1070 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1070" @@ -3966,9 +4360,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:13 GMT + - Mon, 30 Jun 2025 15:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3976,11 +4370,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68cc1799-cf96-4736-8dad-cdf111cf8956 + - 373c9df3-fab7-41f0-837a-c585388825c9 status: 200 OK code: 200 - duration: 271.733508ms - - id: 81 + duration: 573.544958ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -3995,8 +4389,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -4006,7 +4400,7 @@ interactions: trailer: {} content_length: 1070 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-05-16T15:08:04.197521Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:39.217450Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-dhcp","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"nl-ams","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1070" @@ -4015,9 +4409,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:13 GMT + - Mon, 30 Jun 2025 15:14:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4025,11 +4419,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13bc6daf-21f3-4e42-8582-317ece04bae8 + - 7cc14439-4cf3-48d7-9a84-abece18d7741 status: 200 OK code: 200 - duration: 158.481579ms - - id: 82 + duration: 132.480333ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4044,8 +4438,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/81e18a36-837f-4ce0-8e62-29232a3e926c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/private-networks/9bf1e809-2659-4e8b-bbf7-7c70acf2cbc2 method: DELETE response: proto: HTTP/2.0 @@ -4062,9 +4456,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:14 GMT + - Mon, 30 Jun 2025 15:14:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4072,11 +4466,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af94e0b2-484f-42c3-8470-88304f80863d + - 7624c81d-242f-4628-9eb5-bd5456f5fab4 status: 204 No Content code: 204 - duration: 1.669833744s - - id: 83 + duration: 1.409517792s + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4091,8 +4485,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/b1a4f7bb-2fac-4376-adc4-189807a14886 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/c1169f28-275b-4afb-88d0-7b729349fe3e method: DELETE response: proto: HTTP/2.0 @@ -4109,9 +4503,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:15 GMT + - Mon, 30 Jun 2025 15:14:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4119,11 +4513,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 304a77c9-cb0c-44f5-8115-9c9113c8b43a + - 7a213dde-50bb-4cef-8c49-10ddb9eec40b status: 204 No Content code: 204 - duration: 230.534249ms - - id: 84 + duration: 245.283625ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4138,8 +4532,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -4149,7 +4543,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","type":"not_found"}' headers: Content-Length: - "129" @@ -4158,9 +4552,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:43 GMT + - Mon, 30 Jun 2025 15:15:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4168,11 +4562,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e98d53c9-b508-4a97-a3a2-420cca93f1b1 + - bdb23d15-f242-4304-a1b7-2e1ccd06e0e2 status: 404 Not Found code: 404 - duration: 105.485574ms - - id: 85 + duration: 116.687708ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4187,8 +4581,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/5fe94e6c-b723-49e9-84e4-1cbe88c81347 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/nl-ams/instances/742f5d20-620c-4197-8bf1-8d29c4dbf3dc method: GET response: proto: HTTP/2.0 @@ -4198,7 +4592,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"5fe94e6c-b723-49e9-84e4-1cbe88c81347","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"742f5d20-620c-4197-8bf1-8d29c4dbf3dc","type":"not_found"}' headers: Content-Length: - "129" @@ -4207,9 +4601,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 15:11:44 GMT + - Mon, 30 Jun 2025 15:15:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4217,7 +4611,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3e7c9c5-3a39-4c9d-b4dd-d3681cf9dfe6 + - 0ba52f5a-ad90-43d1-bbd5-8825bdb07ad8 status: 404 Not Found code: 404 - duration: 97.746653ms + duration: 93.343208ms diff --git a/internal/services/vpc/testdata/acl-basic.cassette.yaml b/internal/services/vpc/testdata/acl-basic.cassette.yaml index ca3fcc0714..3f7c758976 100644 --- a/internal/services/vpc/testdata/acl-basic.cassette.yaml +++ b/internal/services/vpc/testdata/acl-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 398 uncompressed: false - body: '{"created_at":"2025-06-17T16:23:59.054566Z","custom_routes_propagation_enabled":false,"id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","is_default":false,"name":"tf-vpc-acl","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-06-17T16:23:59.054566Z"}' + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":false,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:03.525825Z"}' headers: Content-Length: - "398" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f693b1b-b118-499d-b9e5-89c9f270ac06 + - 96fcbffd-78ba-488e-ab1e-b47cab4cf280 status: 200 OK code: 200 - duration: 227.951375ms + duration: 278.035ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 397 + uncompressed: false + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":true,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:03.596435Z"}' + headers: + Content-Length: + - "397" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:16:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0cf86faf-1c70-49d1-ae72-5a556c7a91c9 + status: 200 OK + code: 200 + duration: 49.148791ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7 method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-17T16:23:59.054566Z","custom_routes_propagation_enabled":false,"id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","is_default":false,"name":"tf-vpc-acl","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-06-17T16:23:59.054566Z"}' + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":true,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:03.596435Z"}' headers: Content-Length: - - "398" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,11 +148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6e2bd742-e12e-4a8d-9fc8-4e133fa8e333 + - 652fb1b1-35aa-44bf-9944-4c69b9523ad6 status: 200 OK code: 200 - duration: 34.3865ms - - id: 2 + duration: 34.512041ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -118,8 +169,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules method: PUT response: proto: HTTP/2.0 @@ -138,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9813a485-e514-4b30-bcf6-e253fbe4d94a + - fee15e29-ae6f-401b-925d-817188b61411 status: 200 OK code: 200 - duration: 103.246417ms - - id: 3 + duration: 88.528334ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -187,9 +238,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a6681bb-cabe-4694-bb17-c9f7be25789e + - f67bcdca-a15f-454b-8c8d-4a175061ce8e status: 200 OK code: 200 - duration: 27.105292ms - - id: 4 + duration: 34.281ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -216,8 +267,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -236,9 +287,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,11 +297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eac98989-2540-4497-9aaa-12216bf1ca1f + - 7a8dcd5b-f06c-46ba-aa2a-11ed7c4a57ad status: 200 OK code: 200 - duration: 57.55725ms - - id: 5 + duration: 532.899208ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -265,8 +316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7 method: GET response: proto: HTTP/2.0 @@ -274,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-17T16:23:59.054566Z","custom_routes_propagation_enabled":false,"id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","is_default":false,"name":"tf-vpc-acl","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-06-17T16:23:59.197680Z"}' + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":true,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:03.733294Z"}' headers: Content-Length: - - "398" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd42e2a1-f595-44d0-84dd-4038bfe55c56 + - 807efa69-41e5-4db5-b086-91eff98953ce status: 200 OK code: 200 - duration: 44.814292ms - - id: 6 + duration: 397.781708ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -314,8 +365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -334,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ffc80ad-30af-478e-a251-72fd84968f89 + - ab14edfd-7556-4b0a-8ab1-c46c1ef5fced status: 200 OK code: 200 - duration: 24.182583ms - - id: 7 + duration: 27.876041ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -363,8 +414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7 method: GET response: proto: HTTP/2.0 @@ -372,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-17T16:23:59.054566Z","custom_routes_propagation_enabled":false,"id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","is_default":false,"name":"tf-vpc-acl","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-06-17T16:23:59.197680Z"}' + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":true,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:03.733294Z"}' headers: Content-Length: - - "398" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1263e2fa-cfaf-4c56-b844-6e81317f45b8 + - d2690b8a-76cd-48b1-84f0-5090e2635ad8 status: 200 OK code: 200 - duration: 25.775375ms - - id: 8 + duration: 31.760416ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -412,8 +463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -432,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:23:59 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 374632a4-5065-4c88-97d5-8c54cd7ca0e2 + - 72253a0d-c4ab-4211-9cf2-0ff540129333 status: 200 OK code: 200 - duration: 26.459166ms - - id: 9 + duration: 34.189584ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -463,8 +514,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules method: PUT response: proto: HTTP/2.0 @@ -483,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fce4ae73-c18e-4c23-b7b0-60162057861d + - 8b600018-7a42-4435-8965-10b423625a68 status: 200 OK code: 200 - duration: 103.092708ms - - id: 10 + duration: 213.086417ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -512,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -532,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d69758f4-122c-478b-9039-c00d9e51bdad + - b9e921f8-d0cd-4fc9-a303-d6530b96926c status: 200 OK code: 200 - duration: 28.875666ms - - id: 11 + duration: 32.976125ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -561,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -581,9 +632,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d63ddb17-19f6-4173-9a44-91ef007d40e7 + - 42e4aaa9-1b9f-4187-8cfb-b45ce8e76e57 status: 200 OK code: 200 - duration: 32.688542ms - - id: 12 + duration: 33.51025ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -610,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7 method: GET response: proto: HTTP/2.0 @@ -619,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-17T16:23:59.054566Z","custom_routes_propagation_enabled":false,"id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","is_default":false,"name":"tf-vpc-acl","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-06-17T16:24:00.137552Z"}' + body: '{"created_at":"2025-06-30T15:16:03.525825Z","custom_routes_propagation_enabled":true,"id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","is_default":false,"name":"tf-vpc-acl","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-06-30T15:16:05.702577Z"}' headers: Content-Length: - - "398" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -640,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48cb772b-02de-4489-bdc8-2a6fa5077560 + - 75b0f422-c28d-4a01-92b7-bec72aecac66 status: 200 OK code: 200 - duration: 35.907125ms - - id: 13 + duration: 33.036541ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -659,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -679,9 +730,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -689,11 +740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 673858e1-92c5-4175-bab1-8db05b294780 + - 05c04e58-f0ed-45ef-9366-b15c8f7229dd status: 200 OK code: 200 - duration: 32.324ms - - id: 14 + duration: 42.422042ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -710,8 +761,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules method: PUT response: proto: HTTP/2.0 @@ -730,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,11 +791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a87d3ec5-a309-465c-aaca-6eb2087b22f2 + - dd465fec-a5d2-475d-b3a2-82e865153c95 status: 200 OK code: 200 - duration: 81.605709ms - - id: 15 + duration: 87.908125ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -759,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7 method: DELETE response: proto: HTTP/2.0 @@ -777,9 +828,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -787,11 +838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1500ea5c-11ec-4829-a4e5-1cafbf976ce3 + - a3bd4cc3-9ce1-4366-8ad1-67f88f9cc94a status: 204 No Content code: 204 - duration: 86.099291ms - - id: 16 + duration: 110.898166ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -806,8 +857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7756e52a-cb1c-4a33-9a80-2d46208b32d2/acl-rules?is_ipv6=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aa8a56b0-08a8-42d5-aeac-0183449e93e7/acl-rules?is_ipv6=false method: GET response: proto: HTTP/2.0 @@ -817,7 +868,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"7756e52a-cb1c-4a33-9a80-2d46208b32d2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"aa8a56b0-08a8-42d5-aeac-0183449e93e7","type":"not_found"}' headers: Content-Length: - "124" @@ -826,9 +877,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 17 Jun 2025 16:24:00 GMT + - Mon, 30 Jun 2025 15:16:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -836,7 +887,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc8f11dd-def3-46e2-b4fc-532ddb7cff1e + - d51e8372-64df-4b30-965c-a89d2f79f244 status: 404 Not Found code: 404 - duration: 22.743084ms + duration: 28.540333ms diff --git a/internal/services/vpc/testdata/data-source-routes-basic.cassette.yaml b/internal/services/vpc/testdata/data-source-routes-basic.cassette.yaml index 94533a4152..9aab956f99 100644 --- a/internal/services/vpc/testdata/data-source-routes-basic.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-routes-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-route-01","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"enable_routing":true}' + body: '{"name":"tf-vpc-route-01","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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: 414 + content_length: 403 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":false,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","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-06-30T15:23:59.385683Z"}' headers: Content-Length: - - "414" + - "403" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:18 GMT + - Mon, 30 Jun 2025 15:23:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aec3ed05-71f2-4033-94bd-c6ab5689ce46 + - 909ba20a-06f1-4efc-9010-cf2035da9208 status: 200 OK code: 200 - duration: 326.402043ms + duration: 394.992833ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","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-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "414" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:18 GMT + - Mon, 30 Jun 2025 15:23:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78478144-d4a3-40f9-a0bb-ae7a0307588b + - 7914e5b5-c83c-4a78-8b3f-fa4d8f924116 status: 200 OK code: 200 - duration: 54.11386ms + duration: 40.954083ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 147 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn_route","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null,"vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","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-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1081" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:19 GMT + - Mon, 30 Jun 2025 15:23:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0903b0-2938-42d3-b641-31d419420e26 + - be0e2fd2-43d2-4e4c-a8f4-5305e68385e3 status: 200 OK code: 200 - duration: 801.118747ms + duration: 27.344459ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 149 + content_length: 189 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn_route_2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":null,"vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"name":"tf-pn_route","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9","default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -178,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 1056 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1083" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:19 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bb96be0e-39d0-464d-8a04-9a17c0ace31b + - f7f6128e-9ca8-4359-854b-945f586c5dfd status: 200 OK code: 200 - duration: 801.118836ms + duration: 588.365ms - id: 4 request: proto: HTTP/1.1 @@ -218,8 +218,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -227,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1056 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1081" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:19 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,48 +248,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fb41a41-f2dd-4041-b87c-ef0259063258 + - 5a709865-556e-4018-b313-41aef1f74fd5 status: 200 OK code: 200 - duration: 177.876617ms + duration: 27.691541ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 191 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn_route_2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 1059 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1083" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:19 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0aa1168a-9a4b-4892-864c-b6f2760cbaed + - ef60ec2e-991e-4535-bb89-bf0643b71708 status: 200 OK code: 200 - duration: 177.964156ms + duration: 624.954791ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -325,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 1059 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":2,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "414" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:20 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35b9eeb6-8ef2-49a3-bf87-6968afa1ca5d + - 05f27730-010c-4a9e-b9a4-80653f9dfb33 status: 200 OK code: 200 - duration: 209.637285ms + duration: 31.162291ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":2,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1083" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:20 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8410387c-0f92-4ebb-97df-5922e4f007ee + - e2128183-ffce-43b5-a110-ae4215aabcb4 status: 200 OK code: 200 - duration: 199.84615ms + duration: 49.970834ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1059 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1081" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:20 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bebd3220-2bde-409c-9c4a-6abacb4b1944 + - f09cd48b-743e-449a-ba80-06b6e9d0f113 status: 200 OK code: 200 - duration: 199.836291ms + duration: 26.57825ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -472,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 1056 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":2,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "414" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:21 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3780d78b-bf59-458d-aeb9-8d1ac52e8a35 + - dd734095-6ee0-4652-afe7-d1c3457962d6 status: 200 OK code: 200 - duration: 32.430766ms + duration: 31.098167ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -521,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":2,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1083" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:21 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -542,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a6e70ee-6cc8-4277-a19f-67dcf72a8304 + - ecba1213-1455-483b-a1db-5bd274e8c368 status: 200 OK code: 200 - duration: 219.319662ms + duration: 33.351875ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -570,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1059 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1081" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:21 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -591,50 +593,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f813bf1-bba2-41e4-99c8-71945b6f7f90 + - 6f93fdf2-48c9-4243-a6ed-3347c68580bf status: 200 OK code: 200 - duration: 219.30848ms + duration: 27.1985ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 145 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"tf-gw-route","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 913 + content_length: 1056 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:23.984721Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "913" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:24 GMT + - Mon, 30 Jun 2025 15:24:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,48 +642,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0314494a-f471-48b9-9466-6e8c75e511f6 + - 9868ad7c-85b1-4b7c-9b93-47d070e0a40e status: 200 OK code: 200 - duration: 1.821948963s + duration: 27.903875ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 145 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-gw-route","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 933 + content_length: 887 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:24.244546Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:01.711317Z","zone":"fr-par-1"}' headers: Content-Length: - - "933" + - "887" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:24 GMT + - Mon, 30 Jun 2025 15:24:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d935e7dc-ad4d-417f-a03f-c00ddcad552d + - f0712c77-42fd-41d0-830d-23439823afd2 status: 200 OK code: 200 - duration: 44.234378ms + duration: 883.2015ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -719,20 +721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 933 + content_length: 905 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:24.244546Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:01.755003Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "933" + - "905" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:29 GMT + - Mon, 30 Jun 2025 15:24:01 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d09f75c-1a1c-4399-8ad2-aea3fd50dced + - c88867bc-6e87-400a-a409-fc9b1ae4a88f status: 200 OK code: 200 - duration: 56.183204ms + duration: 35.969375ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -768,20 +770,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 929 + content_length: 906 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:33.291318Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:02.034703Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "929" + - "906" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:34 GMT + - Mon, 30 Jun 2025 15:24:06 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 680b68d9-c276-498a-b9dc-197d7d277c2f + - ddb7336b-5143-46b5-adc9-f36837c48447 status: 200 OK code: 200 - duration: 47.212103ms + duration: 33.923625ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -817,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 929 + content_length: 902 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:33.291318Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:11.369935Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "929" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:34 GMT + - Mon, 30 Jun 2025 15:24:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 668c8346-ecf5-4eca-94ac-719226bcd53b + - f0250c73-d060-436f-8444-fe483de945bf status: 200 OK code: 200 - duration: 78.176652ms + duration: 51.46625ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -866,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 929 + content_length: 902 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:33.291318Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:11.369935Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "929" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:34 GMT + - Mon, 30 Jun 2025 15:24:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1bb77dba-85ec-48f6-9b10-646c2289fb04 + - ab032dac-5334-4e86-8f9c-c504ed62b3bc status: 200 OK code: 200 - duration: 30.659925ms + duration: 29.999875ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -915,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 929 + content_length: 902 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:33.291318Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:11.369935Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "929" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:34 GMT + - Mon, 30 Jun 2025 15:24:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,50 +938,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3eb6250b-d780-45ef-8af5-e77cb444a016 + - c0b79e59-04f6-49d7-ac87-be0e302f10c0 status: 200 OK code: 200 - duration: 60.407082ms + duration: 35.225ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","enable_masquerade":true,"push_default_route":true}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 902 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:35.230773Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:11.369935Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "393" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:35 GMT + - Mon, 30 Jun 2025 15:24:11 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4934fd4-2b82-4a25-9f00-936101283d92 + - 2ff64993-aa12-4b17-9c31-d08507a2a4ee status: 200 OK code: 200 - duration: 954.776211ms + duration: 37.802ms - id: 20 request: proto: HTTP/1.1 @@ -1002,13 +1002,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","enable_masquerade":true,"push_default_route":true}' + body: '{"gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","enable_masquerade":true,"push_default_route":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: @@ -1019,7 +1019,7 @@ interactions: trailer: {} content_length: 175 uncompressed: false - body: '{"current_state":"configuring","message":"resource is in a transient state","resource":"gateway","resource_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","type":"transient_state"}' + body: '{"current_state":"configuring","message":"resource is in a transient state","resource":"gateway","resource_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","type":"transient_state"}' headers: Content-Length: - "175" @@ -1028,9 +1028,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:35 GMT + - Mon, 30 Jun 2025 15:24:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1038,48 +1038,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19d5643f-9fe7-4f82-bd6e-86ff15376ab6 + - 62ed0334-dc7a-4fe0-874c-008655d9c8bd status: 409 Conflict code: 409 - duration: 984.777394ms + duration: 2.937582875s - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","enable_masquerade":true,"push_default_route":true}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1326 + content_length: 384 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:35.230773Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:14.831534Z","zone":"fr-par-1"}' headers: Content-Length: - - "1326" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:35 GMT + - Mon, 30 Jun 2025 15:24:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1087,10 +1089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29feb178-d73e-4e44-a280-021d788fd7f6 + - 58906b13-4826-4c5f-9a5e-3ab220efad68 status: 200 OK code: 200 - duration: 32.285485ms + duration: 2.942244625s - id: 22 request: proto: HTTP/1.1 @@ -1106,8 +1108,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1115,20 +1117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1326 + content_length: 1290 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:35.230773Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:14.831534Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1326" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:35 GMT + - Mon, 30 Jun 2025 15:24:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1136,10 +1138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bdd4598-10eb-4149-b73c-a11cc086011e + - d95df6f5-6922-4f37-9dba-e9c396aa16f0 status: 200 OK code: 200 - duration: 31.745001ms + duration: 28.209208ms - id: 23 request: proto: HTTP/1.1 @@ -1155,8 +1157,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1164,20 +1166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1326 + content_length: 1290 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:35.230773Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:14.831534Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1326" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:40 GMT + - Mon, 30 Jun 2025 15:24:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1185,10 +1187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3147e8d8-4383-402b-817e-b53dd47426de + - 36a9df92-ca96-4772-9f21-00b77f23738a status: 200 OK code: 200 - duration: 34.781678ms + duration: 25.768208ms - id: 24 request: proto: HTTP/1.1 @@ -1204,8 +1206,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1213,20 +1215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1326 + content_length: 1290 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:35.230773Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:14.831534Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1326" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:40 GMT + - Mon, 30 Jun 2025 15:24:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1234,10 +1236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91cd1076-e38f-4c93-8dd6-26a8f68f1c6f + - c6714379-1d0c-43ca-89fd-ea845a965475 status: 200 OK code: 200 - duration: 75.453542ms + duration: 31.880292ms - id: 25 request: proto: HTTP/1.1 @@ -1253,8 +1255,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1262,20 +1264,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1290 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:14.831534Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1359" + - "1290" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:45 GMT + - Mon, 30 Jun 2025 15:24:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1283,10 +1285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad6f0eb3-e0f4-4388-adcf-d30928e362e2 + - d81d77cd-695b-4fe5-8dc0-8512d44e3e1d status: 200 OK code: 200 - duration: 39.478748ms + duration: 34.007625ms - id: 26 request: proto: HTTP/1.1 @@ -1302,8 +1304,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1311,20 +1313,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1359 + content_length: 1328 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:35.330149Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:24:20.509608Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1359" + - "1328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:45 GMT + - Mon, 30 Jun 2025 15:24:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1332,10 +1334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a622af8-d2a1-4026-8df9-ea2cd5419cdd + - 8e3d557d-4dd1-4b14-b08f-3c8a20a52a7e status: 200 OK code: 200 - duration: 26.147453ms + duration: 28.549834ms - id: 27 request: proto: HTTP/1.1 @@ -1351,8 +1353,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1360,20 +1362,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1328 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:45.796265Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:24:20.509608Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:14.947685Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1355" + - "1328" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:50 GMT + - Mon, 30 Jun 2025 15:24:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1381,10 +1383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1712fd62-9efc-45fe-86ae-00f3c6c2b442 + - c0d2b4f8-9bf9-4866-ab07-8476c2dcdf0b status: 200 OK code: 200 - duration: 36.722713ms + duration: 28.468375ms - id: 28 request: proto: HTTP/1.1 @@ -1400,8 +1402,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1409,20 +1411,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1318 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:45.796265Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:26.465404Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1355" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:50 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1430,10 +1432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 081b3a64-faa2-46fb-93b4-0c44652f6b46 + - c35c2948-044e-4169-8a87-3d7e4d160374 status: 200 OK code: 200 - duration: 41.794355ms + duration: 45.641ms - id: 29 request: proto: HTTP/1.1 @@ -1449,8 +1451,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1458,20 +1460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1318 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:26.465404Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:50 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1479,10 +1481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93152c59-9d52-42ff-8a3f-c03e33ff17ab + - b26b5f9a-5ead-4a2d-993b-ca2c0ec904c0 status: 200 OK code: 200 - duration: 113.136275ms + duration: 47.763459ms - id: 30 request: proto: HTTP/1.1 @@ -1498,8 +1500,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -1507,20 +1509,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:50 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1528,10 +1530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8995309d-e468-40a8-ad41-f76a893bf3bf + - ec40616f-6103-4f39-bedc-458ec707b4fd status: 200 OK code: 200 - duration: 65.237606ms + duration: 57.1885ms - id: 31 request: proto: HTTP/1.1 @@ -1547,8 +1549,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -1556,20 +1558,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:45.796265Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "1355" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:51 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1577,10 +1579,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a2dd86c-8318-4cd6-92cc-dacd8032d236 + - 6908192f-ed03-40dd-967d-860e4fd45615 status: 200 OK code: 200 - duration: 28.3137ms + duration: 47.651042ms - id: 32 request: proto: HTTP/1.1 @@ -1596,8 +1598,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b224dbc0-d5b5-402e-b83b-33ecb11b52ce&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1605,20 +1607,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1318 uncompressed: false - body: '{"ips":[{"address":"172.16.36.2/22","created_at":"2025-05-19T15:32:35.101810Z","id":"86895dcc-ac30-48a9-951c-722732e603d9","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","mac_address":"02:00:00:12:3F:95","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"9bec03dd-82ba-4369-873d-665f9ce62099"},"tags":[],"updated_at":"2025-05-19T15:32:35.600856Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:26.465404Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1318" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:51 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1626,50 +1628,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3067ab4c-9949-4934-8703-be193050bb22 + - 51cdad6a-be51-4ce7-97a9-abf5ab024c25 status: 200 OK code: 200 - duration: 72.372879ms + duration: 29.9585ms - id: 33 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","enable_masquerade":true,"push_default_route":true}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2df393b9-afc2-43f0-8bd3-5aca94254820&resource_type=vpc_gateway_network + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 509 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:51.175575Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:24:13.813194Z","id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2df393b9-afc2-43f0-8bd3-5aca94254820","mac_address":"02:00:00:16:36:B5","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"4ad24b96-4ae4-400c-af10-b6f51a74314c"},"tags":[],"updated_at":"2025-06-30T15:24:15.230801Z","zone":null}],"total_count":1}' headers: Content-Length: - - "393" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:51 GMT + - Mon, 30 Jun 2025 15:24:30 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1677,48 +1677,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdedfbba-c89e-47d9-a4f5-1cafda47808b + - f8f3b836-6a88-40d9-a554-9c08b48bdaef status: 200 OK code: 200 - duration: 610.819008ms + duration: 64.074875ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","enable_masquerade":true,"push_default_route":true}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1754 + content_length: 384 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:51.175575Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:51.278198Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:32.015264Z","zone":"fr-par-1"}' headers: Content-Length: - - "1754" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:51 GMT + - Mon, 30 Jun 2025 15:24:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1726,10 +1728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8a3829b-a924-4940-bc27-56ce1326df8e + - 3851ae87-2e23-4e2f-b44f-70b6cd090cb8 status: 200 OK code: 200 - duration: 26.655164ms + duration: 2.059917417s - id: 35 request: proto: HTTP/1.1 @@ -1745,8 +1747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1754,20 +1756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1754 + content_length: 1707 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"created","updated_at":"2025-05-19T15:32:51.175575Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:51.278198Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:32.015264Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:32.086261Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1754" + - "1707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:32:56 GMT + - Mon, 30 Jun 2025 15:24:32 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1775,10 +1777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e580297-7586-407f-99a8-b1926191e027 + - 6f1b0498-c7ff-4071-929c-49b83d158860 status: 200 OK code: 200 - duration: 30.40666ms + duration: 32.625542ms - id: 36 request: proto: HTTP/1.1 @@ -1794,8 +1796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1803,20 +1805,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 1707 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:24:32.015264Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:32.086261Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1783" + - "1707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:01 GMT + - Mon, 30 Jun 2025 15:24:37 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1824,10 +1826,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8e4a75a-59a6-471a-a866-bbe1ae32e370 + - db8e4857-35c8-4498-90be-6ada6e12e633 status: 200 OK code: 200 - duration: 42.101313ms + duration: 30.378417ms - id: 37 request: proto: HTTP/1.1 @@ -1843,8 +1845,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1852,20 +1854,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1745 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:24:37.685461Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:32.086261Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "1745" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:01 GMT + - Mon, 30 Jun 2025 15:24:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1873,10 +1875,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08320340-2b45-4394-887e-dce1f1a973f2 + - dc613171-cebc-4c24-87d9-cc9a8b76bd3d status: 200 OK code: 200 - duration: 95.908096ms + duration: 41.837584ms - id: 38 request: proto: HTTP/1.1 @@ -1892,8 +1894,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -1901,20 +1903,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:01 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1922,10 +1924,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0b92e66-f879-4ae5-82f8-72e9ae16c474 + - a10cf307-7407-4eae-9d5a-8c5936d61110 status: 200 OK code: 200 - duration: 40.57191ms + duration: 30.655583ms - id: 39 request: proto: HTTP/1.1 @@ -1941,8 +1943,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -1950,20 +1952,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "1783" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:01 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1971,10 +1973,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcd34c57-bb31-4a7d-a6c5-cc16a843dda2 + - 311689e1-2b60-4004-8819-dd546310f888 status: 200 OK code: 200 - duration: 74.062481ms + duration: 51.994208ms - id: 40 request: proto: HTTP/1.1 @@ -1990,8 +1992,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=05c3f641-bf82-4ee2-b2a3-fdbb63665fdb&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=657bc1bb-8d70-4213-9539-b99bfa05db13&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -1999,20 +2001,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 416 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-19T15:32:51.078423Z","id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"657bc1bb-8d70-4213-9539-b99bfa05db13","mac_address":"02:00:00:17:3F:C8","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"5d805329-a070-446d-b701-343eb960e6da"},"tags":[],"updated_at":"2025-05-19T15:32:51.516485Z","zone":null}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:01 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2020,10 +2022,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38544c9b-7254-4ca2-97e5-712d2c78a84d + - 971aebb6-bc76-424b-a9ff-c66244dea326 status: 200 OK code: 200 - duration: 41.479921ms + duration: 41.988375ms - id: 41 request: proto: HTTP/1.1 @@ -2039,8 +2041,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -2048,20 +2050,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":2,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "414" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2069,10 +2071,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5364e250-99db-4f5b-9994-4ac15a5749be + - ae7c95a9-4dda-430a-87b6-13e4c69f442d status: 200 OK code: 200 - duration: 50.461402ms + duration: 38.920416ms - id: 42 request: proto: HTTP/1.1 @@ -2088,8 +2090,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=58612a64-0549-4877-a0c6-0a149a7e69c2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=d62bdb23-d968-4ffe-99c6-133b04c85596&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2097,20 +2099,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 509 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.20.3/22","created_at":"2025-06-30T15:24:31.413535Z","id":"f2845636-2497-43f5-b71d-5ec4df304910","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"d62bdb23-d968-4ffe-99c6-133b04c85596","mac_address":"02:00:00:10:2E:6F","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8"},"tags":[],"updated_at":"2025-06-30T15:24:32.402329Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1783" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2118,10 +2120,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f3d2a207-4a57-4776-9274-5578d305e57d + - a6d7afba-2854-475a-8f40-32d53fe5afcd status: 200 OK code: 200 - duration: 77.873473ms + duration: 51.951375ms - id: 43 request: proto: HTTP/1.1 @@ -2137,8 +2139,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -2146,20 +2148,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:41.639360Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1081" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2167,10 +2169,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c884b98-bea1-4e03-b21e-d8f6c6fc605a + - d07ed857-5680-4b29-a1e6-ffb13f86aa17 status: 200 OK code: 200 - duration: 43.205261ms + duration: 26.181916ms - id: 44 request: proto: HTTP/1.1 @@ -2186,8 +2188,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -2195,20 +2197,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:57.654852Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":2,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1083" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2216,10 +2218,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aac77174-4d6b-4e87-bf46-dc810922e161 + - bac82808-dc8f-4878-891c-daea29821016 status: 200 OK code: 200 - duration: 52.5133ms + duration: 37.202875ms - id: 45 request: proto: HTTP/1.1 @@ -2235,8 +2237,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -2244,20 +2246,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1056 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:21.855427Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "426" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2265,10 +2267,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 178b39a4-1266-4b94-959b-2a98e779ddfa + - 141a3ff8-a413-40e9-87c6-449e8641a0ba status: 200 OK code: 200 - duration: 49.327022ms + duration: 24.783167ms - id: 46 request: proto: HTTP/1.1 @@ -2284,8 +2286,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -2293,20 +2295,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 1059 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:38.587960Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1783" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2314,10 +2316,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37ee8f5b-dec9-432c-915b-cf30235791be + - a0df4bab-ef73-4a3e-86fe-46e1222153cc status: 200 OK code: 200 - duration: 37.51316ms + duration: 28.59225ms - id: 47 request: proto: HTTP/1.1 @@ -2333,8 +2335,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -2342,20 +2344,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "426" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2363,10 +2365,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a85ae3c8-7265-4eda-a729-9f49396a55e2 + - 057485f6-19cc-4412-924f-1c0d1d6670b4 status: 200 OK code: 200 - duration: 82.911048ms + duration: 45.4415ms - id: 48 request: proto: HTTP/1.1 @@ -2382,8 +2384,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -2391,20 +2393,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "1783" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2412,10 +2414,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcf8ddbb-529d-4f5c-b872-c6d091ea1de1 + - 49dae5b9-36ed-4c47-acd5-04499ae0723c status: 200 OK code: 200 - duration: 74.993568ms + duration: 46.588875ms - id: 49 request: proto: HTTP/1.1 @@ -2431,8 +2433,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b224dbc0-d5b5-402e-b83b-33ecb11b52ce&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -2440,20 +2442,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.36.2/22","created_at":"2025-05-19T15:32:35.101810Z","id":"86895dcc-ac30-48a9-951c-722732e603d9","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","mac_address":"02:00:00:12:3F:95","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"9bec03dd-82ba-4369-873d-665f9ce62099"},"tags":[],"updated_at":"2025-05-19T15:32:35.600856Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2461,10 +2463,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e7a6bbf-2f79-424f-b80d-53d5ffb607ff + - 6167d446-44a6-468c-869a-7d325d5cf99d status: 200 OK code: 200 - duration: 77.044695ms + duration: 34.158292ms - id: 50 request: proto: HTTP/1.1 @@ -2480,8 +2482,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=05c3f641-bf82-4ee2-b2a3-fdbb63665fdb&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=657bc1bb-8d70-4213-9539-b99bfa05db13&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -2489,20 +2491,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-19T15:32:51.078423Z","id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"657bc1bb-8d70-4213-9539-b99bfa05db13","mac_address":"02:00:00:17:3F:C8","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"5d805329-a070-446d-b701-343eb960e6da"},"tags":[],"updated_at":"2025-05-19T15:32:51.516485Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:02 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2510,10 +2512,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a463b03-24ec-497a-9012-7cc7654ae259 + - 869ed510-4d88-46b3-ab2e-33ae47978496 status: 200 OK code: 200 - duration: 101.541453ms + duration: 41.766542ms - id: 51 request: proto: HTTP/1.1 @@ -2529,8 +2531,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2df393b9-afc2-43f0-8bd3-5aca94254820&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2538,20 +2540,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 509 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":2,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:24:13.813194Z","id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2df393b9-afc2-43f0-8bd3-5aca94254820","mac_address":"02:00:00:16:36:B5","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"4ad24b96-4ae4-400c-af10-b6f51a74314c"},"tags":[],"updated_at":"2025-06-30T15:24:15.230801Z","zone":null}],"total_count":1}' headers: Content-Length: - - "414" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2559,10 +2561,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842fdbd2-f307-4d19-8eac-0f71bff18e83 + - 2714781d-5eab-4a44-a3a0-56e787051d1e status: 200 OK code: 200 - duration: 36.574369ms + duration: 48.821958ms - id: 52 request: proto: HTTP/1.1 @@ -2578,8 +2580,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=58612a64-0549-4877-a0c6-0a149a7e69c2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=d62bdb23-d968-4ffe-99c6-133b04c85596&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2587,20 +2589,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 509 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.20.3/22","created_at":"2025-06-30T15:24:31.413535Z","id":"f2845636-2497-43f5-b71d-5ec4df304910","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"d62bdb23-d968-4ffe-99c6-133b04c85596","mac_address":"02:00:00:10:2E:6F","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8"},"tags":[],"updated_at":"2025-06-30T15:24:32.402329Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1783" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2608,10 +2610,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f8f986c-584c-43fd-90ff-0885f730b6e2 + - 82473413-db39-4a25-92f1-9c5d67364f3e status: 200 OK code: 200 - duration: 37.901086ms + duration: 50.416875ms - id: 53 request: proto: HTTP/1.1 @@ -2627,8 +2629,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -2636,20 +2638,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:57.654852Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":2,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1083" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2657,10 +2659,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f12ca36-62d7-4b6f-bb5a-4091292ff3a8 + - 4b00f29c-8620-407f-94e3-589dd02bc182 status: 200 OK code: 200 - duration: 70.658776ms + duration: 500.200667ms - id: 54 request: proto: HTTP/1.1 @@ -2676,8 +2678,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -2685,20 +2687,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:41.639360Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1081" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2706,10 +2708,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67f71270-6cd8-4779-9ba3-1b5844517d70 + - 87c68580-d431-4e37-9441-e3d8da80f76d status: 200 OK code: 200 - duration: 79.331542ms + duration: 500.050416ms - id: 55 request: proto: HTTP/1.1 @@ -2725,8 +2727,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -2734,20 +2736,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 1056 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 5d805329-a070-446d-b701-343eb960e6da","destination":"172.16.32.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:57.557480Z","description":"","destination":"0.0.0.0/0","id":"0079528e-b812-4052-92f7-b78af1f45a88","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:57.557480Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":6}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:21.855427Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "3122" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2755,10 +2757,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1be70f4e-8303-41db-b068-82d868959912 + - 14ebb71b-6686-4d90-a6aa-6bf275aa6fe7 status: 200 OK code: 200 - duration: 82.996531ms + duration: 28.633667ms - id: 56 request: proto: HTTP/1.1 @@ -2774,8 +2776,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -2783,20 +2785,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1059 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:38.587960Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "426" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2804,10 +2806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa62d6b1-3f0e-473a-afae-36dc82d85277 + - edae5c34-31ad-4782-873a-f2ff3f95334a status: 200 OK code: 200 - duration: 42.173732ms + duration: 31.984167ms - id: 57 request: proto: HTTP/1.1 @@ -2823,8 +2825,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -2832,20 +2834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1039 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":2}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":2}' headers: Content-Length: - - "1068" + - "1039" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2853,10 +2855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 523f52cc-cec5-4346-8dd9-f10eae611b9e + - ea4818f4-ca81-446b-b5f2-818dff42471a status: 200 OK code: 200 - duration: 151.37659ms + duration: 54.157375ms - id: 58 request: proto: HTTP/1.1 @@ -2872,8 +2874,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -2881,20 +2883,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 3037 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:38.519686Z","description":"","destination":"0.0.0.0/0","id":"47b23b1c-28f7-4230-acbe-2affa6fdefed","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:38.519686Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":6}' headers: Content-Length: - - "426" + - "3037" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2902,10 +2904,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a3dea0-60fe-4be8-bdd2-d662a280b2fe + - f732acf6-abe4-4121-bea1-2eb3d5ff1663 status: 200 OK code: 200 - duration: 79.556721ms + duration: 67.809917ms - id: 59 request: proto: HTTP/1.1 @@ -2921,8 +2923,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -2930,20 +2932,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 416 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "1575" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2951,10 +2953,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f81d203d-200a-4eb3-b332-af8ee9dbf715 + - b30c6c0c-727a-4ade-aa22-8cbb58c12323 status: 200 OK code: 200 - duration: 80.609857ms + duration: 44.215042ms - id: 60 request: proto: HTTP/1.1 @@ -2970,8 +2972,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -2979,20 +2981,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "1783" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3000,10 +3002,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e589a88-b34d-4183-824c-a9d79d6f4ae4 + - 25dd79ab-9969-4dfb-a07b-9f5b2dedf691 status: 200 OK code: 200 - duration: 55.081172ms + duration: 58.697292ms - id: 61 request: proto: HTTP/1.1 @@ -3019,8 +3021,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3028,20 +3030,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 1532 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":3}' headers: Content-Length: - - "1783" + - "1532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3049,10 +3051,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e0c54c5-47ca-41fa-8148-5a6db6f96493 + - b87e9acf-559d-4e42-8637-a0b333b99201 status: 200 OK code: 200 - duration: 33.418109ms + duration: 66.583333ms - id: 62 request: proto: HTTP/1.1 @@ -3068,8 +3070,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=05c3f641-bf82-4ee2-b2a3-fdbb63665fdb&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=657bc1bb-8d70-4213-9539-b99bfa05db13&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -3077,20 +3079,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-19T15:32:51.078423Z","id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"657bc1bb-8d70-4213-9539-b99bfa05db13","mac_address":"02:00:00:17:3F:C8","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"5d805329-a070-446d-b701-343eb960e6da"},"tags":[],"updated_at":"2025-05-19T15:32:51.516485Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3098,10 +3100,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a801ecad-8203-424b-a657-822c33704857 + - fb68f084-c996-4486-be13-10051aa30e5a status: 200 OK code: 200 - duration: 79.342644ms + duration: 27.834291ms - id: 63 request: proto: HTTP/1.1 @@ -3117,8 +3119,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b224dbc0-d5b5-402e-b83b-33ecb11b52ce&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -3126,20 +3128,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.36.2/22","created_at":"2025-05-19T15:32:35.101810Z","id":"86895dcc-ac30-48a9-951c-722732e603d9","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","mac_address":"02:00:00:12:3F:95","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"9bec03dd-82ba-4369-873d-665f9ce62099"},"tags":[],"updated_at":"2025-05-19T15:32:35.600856Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3147,10 +3149,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fdf8ea2-df30-44b8-9c3c-142a75a89a67 + - 641dd6c6-3749-4f41-965a-05e8d8b79a10 status: 200 OK code: 200 - duration: 92.270433ms + duration: 31.149958ms - id: 64 request: proto: HTTP/1.1 @@ -3166,8 +3168,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=58612a64-0549-4877-a0c6-0a149a7e69c2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=d62bdb23-d968-4ffe-99c6-133b04c85596&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3175,20 +3177,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 509 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":2}' + body: '{"ips":[{"address":"172.16.20.3/22","created_at":"2025-06-30T15:24:31.413535Z","id":"f2845636-2497-43f5-b71d-5ec4df304910","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"d62bdb23-d968-4ffe-99c6-133b04c85596","mac_address":"02:00:00:10:2E:6F","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8"},"tags":[],"updated_at":"2025-06-30T15:24:32.402329Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1068" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3196,10 +3198,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14de5d6c-2706-4db8-a786-f4754bf3bded + - 27855cf6-7fab-4db0-befb-d8f5d8d1ae3f status: 200 OK code: 200 - duration: 56.764528ms + duration: 59.954959ms - id: 65 request: proto: HTTP/1.1 @@ -3215,8 +3217,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2df393b9-afc2-43f0-8bd3-5aca94254820&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3224,20 +3226,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 509 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 5d805329-a070-446d-b701-343eb960e6da","destination":"172.16.32.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:57.557480Z","description":"","destination":"0.0.0.0/0","id":"0079528e-b812-4052-92f7-b78af1f45a88","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:57.557480Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":6}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:24:13.813194Z","id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2df393b9-afc2-43f0-8bd3-5aca94254820","mac_address":"02:00:00:16:36:B5","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"4ad24b96-4ae4-400c-af10-b6f51a74314c"},"tags":[],"updated_at":"2025-06-30T15:24:15.230801Z","zone":null}],"total_count":1}' headers: Content-Length: - - "3122" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3245,10 +3247,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52f72a1f-134d-4388-b166-2885223c4c2c + - 086ffea8-a91c-4f1d-826b-b6f755e596a3 status: 200 OK code: 200 - duration: 56.880759ms + duration: 46.295125ms - id: 66 request: proto: HTTP/1.1 @@ -3264,8 +3266,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3273,20 +3275,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 3037 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":3}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:38.519686Z","description":"","destination":"0.0.0.0/0","id":"47b23b1c-28f7-4230-acbe-2affa6fdefed","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:38.519686Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":6}' headers: Content-Length: - - "1575" + - "3037" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:03 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3294,10 +3296,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa526e46-d363-43c6-ba24-665fc65413f5 + - 7e152760-7e29-4881-9f99-035e15464346 status: 200 OK code: 200 - duration: 121.305033ms + duration: 62.087167ms - id: 67 request: proto: HTTP/1.1 @@ -3313,8 +3315,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3322,20 +3324,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1039 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":2}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":2}' headers: Content-Length: - - "1068" + - "1039" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:04 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3343,10 +3345,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c73104c-fba3-41ab-8a11-b35f8f67bf2d + - 35fc51ca-990e-4900-a339-a0f95a73c9ee status: 200 OK code: 200 - duration: 72.048428ms + duration: 63.983542ms - id: 68 request: proto: HTTP/1.1 @@ -3362,8 +3364,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3371,20 +3373,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 1532 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":3}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":3}' headers: Content-Length: - - "1575" + - "1532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:04 GMT + - Mon, 30 Jun 2025 15:24:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3392,10 +3394,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f60c765-3756-4d58-8f02-9897852c5222 + - bf45fa67-b5d1-4257-9851-494be25ed3ff status: 200 OK code: 200 - duration: 85.814868ms + duration: 73.024417ms - id: 69 request: proto: HTTP/1.1 @@ -3411,8 +3413,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3420,20 +3422,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 3037 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 5d805329-a070-446d-b701-343eb960e6da","destination":"172.16.32.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:57.557480Z","description":"","destination":"0.0.0.0/0","id":"0079528e-b812-4052-92f7-b78af1f45a88","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:57.557480Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":6}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:38.519686Z","description":"","destination":"0.0.0.0/0","id":"47b23b1c-28f7-4230-acbe-2affa6fdefed","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:38.519686Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":6}' headers: Content-Length: - - "3122" + - "3037" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:04 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3441,10 +3443,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e92052d6-16f5-445d-b036-ad9c889166e8 + - b97f7c2c-78e1-49aa-9bea-0b9170ed7b10 status: 200 OK code: 200 - duration: 97.583306ms + duration: 54.7095ms - id: 70 request: proto: HTTP/1.1 @@ -3460,8 +3462,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3469,20 +3471,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 1039 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":2}' headers: Content-Length: - - "1783" + - "1039" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3490,10 +3492,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7d5e19d-878f-462d-8a9e-1f070cebaa3d + - b6281dd7-37c3-4c33-9b57-0217a9b00619 status: 200 OK code: 200 - duration: 40.345272ms + duration: 58.131041ms - id: 71 request: proto: HTTP/1.1 @@ -3509,8 +3511,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3518,20 +3520,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 414 + content_length: 1532 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.632606Z","custom_routes_propagation_enabled":false,"id":"7491ea89-816d-42c2-bfe1-1bd291e4c176","is_default":false,"name":"tf-vpc-route-01","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":2,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:32:18.632606Z"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":3}' headers: Content-Length: - - "414" + - "1532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3539,10 +3541,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 593347d6-2060-464a-9d01-fbb0c68e7844 + - 53270f09-9b60-4358-82c6-ffa0124bd5cd status: 200 OK code: 200 - duration: 43.125795ms + duration: 63.029542ms - id: 72 request: proto: HTTP/1.1 @@ -3558,8 +3560,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -3567,20 +3569,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1083 + content_length: 1735 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.830006Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","name":"tf-pn_route_2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.830006Z","id":"5d805329-a070-446d-b701-343eb960e6da","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.830006Z","id":"4e908006-5d93-468e-9089-cb26ddf8f165","private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:fe44::/64","updated_at":"2025-05-19T15:32:18.830006Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:57.654852Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1083" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3588,10 +3590,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf342a0c-7b9a-4f12-a1e3-cbf866f12bdd + - c7e8b391-698b-4d2b-9930-b25e665cabde status: 200 OK code: 200 - duration: 74.32706ms + duration: 25.909666ms - id: 73 request: proto: HTTP/1.1 @@ -3607,8 +3609,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3616,20 +3618,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1081 + content_length: 402 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:18.926479Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","name":"tf-pn_route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:32:18.926479Z","id":"9bec03dd-82ba-4369-873d-665f9ce62099","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.36.0/22","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"},{"created_at":"2025-05-19T15:32:18.926479Z","id":"61cbf55d-1505-402a-949f-0db0cbafd6e0","private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:b19a::/64","updated_at":"2025-05-19T15:32:18.926479Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}],"tags":[],"updated_at":"2025-05-19T15:32:41.639360Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}' + body: '{"created_at":"2025-06-30T15:23:59.385683Z","custom_routes_propagation_enabled":true,"id":"a8158600-2717-41cd-a673-de50cb3a6ef9","is_default":false,"name":"tf-vpc-route-01","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":2,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:23:59.430269Z"}' headers: Content-Length: - - "1081" + - "402" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3637,10 +3639,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a5eb0e1-14e7-4bb5-bffe-60a393014898 + - 88e5aa71-6369-4afa-b637-e0eaed71068b status: 200 OK code: 200 - duration: 85.986777ms + duration: 34.376542ms - id: 74 request: proto: HTTP/1.1 @@ -3656,8 +3658,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -3665,20 +3667,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 1059 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 5d805329-a070-446d-b701-343eb960e6da","destination":"172.16.32.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:57.557480Z","description":"","destination":"0.0.0.0/0","id":"0079528e-b812-4052-92f7-b78af1f45a88","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:57.557480Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":6}' + body: '{"created_at":"2025-06-30T15:23:59.595365Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"58612a64-0549-4877-a0c6-0a149a7e69c2","name":"tf-pn_route_2","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.595365Z","id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.595365Z","id":"c175f945-e17c-4909-b81e-71aff33de567","private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:f559::/64","updated_at":"2025-06-30T15:23:59.595365Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:38.587960Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "3122" + - "1059" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3686,10 +3688,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 778f1844-462b-493c-a30b-307fc1493a4a + - 98d8d489-6998-4389-92ce-eb2381872e1c status: 200 OK code: 200 - duration: 115.636138ms + duration: 32.714291ms - id: 75 request: proto: HTTP/1.1 @@ -3705,8 +3707,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -3714,20 +3716,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 1056 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:23:59.524908Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","name":"tf-pn_route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:23:59.524908Z","id":"4ad24b96-4ae4-400c-af10-b6f51a74314c","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"},{"created_at":"2025-06-30T15:23:59.524908Z","id":"c1bcd070-750b-4411-8209-2776bca31d80","private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8b3::/64","updated_at":"2025-06-30T15:23:59.524908Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}],"tags":[],"updated_at":"2025-06-30T15:24:21.855427Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}' headers: Content-Length: - - "1068" + - "1056" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3735,10 +3737,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e964c4a9-8933-473a-a6cc-f4bc4f7b15d4 + - 0159a7b1-de1a-4d30-b32c-4badc8473e29 status: 200 OK code: 200 - duration: 115.738272ms + duration: 32.454708ms - id: 76 request: proto: HTTP/1.1 @@ -3754,8 +3756,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3763,20 +3765,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 3037 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:38.519686Z","description":"","destination":"0.0.0.0/0","id":"47b23b1c-28f7-4230-acbe-2affa6fdefed","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:38.519686Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":6}' headers: Content-Length: - - "426" + - "3037" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3784,10 +3786,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4741912-7754-46d9-b8da-e482672078b6 + - dc6f34b3-3679-455d-8152-280cb215132b status: 200 OK code: 200 - duration: 51.02948ms + duration: 50.447167ms - id: 77 request: proto: HTTP/1.1 @@ -3803,8 +3805,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3812,20 +3814,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1039 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":2}' headers: Content-Length: - - "426" + - "1039" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3833,10 +3835,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 539ef251-6ce9-46b6-990c-3a391f80cd6a + - a6cd5205-de1f-4df0-8252-706d8c26c7a4 status: 200 OK code: 200 - duration: 63.646669ms + duration: 53.886917ms - id: 78 request: proto: HTTP/1.1 @@ -3852,8 +3854,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -3861,20 +3863,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 416 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "1575" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3882,10 +3884,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c1975b9-b342-4fab-993a-d9b533a9f8b1 + - ec09d346-d73c-404f-b40b-1703e667974f status: 200 OK code: 200 - duration: 75.311805ms + duration: 57.136834ms - id: 79 request: proto: HTTP/1.1 @@ -3901,8 +3903,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -3910,20 +3912,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 1532 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":3}' headers: Content-Length: - - "1783" + - "1532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3931,10 +3933,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87318f0a-9907-47cf-a5a6-6f1084174b65 + - db8bb6a6-40b9-4db5-a7be-4039eed44add status: 200 OK code: 200 - duration: 44.799321ms + duration: 59.515084ms - id: 80 request: proto: HTTP/1.1 @@ -3950,8 +3952,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -3959,20 +3961,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1783 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"},{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "1783" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3980,10 +3982,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0553220f-7412-48de-a3a0-5c8032020dfc + - 873db05b-e26d-487d-a574-d4d475102f43 status: 200 OK code: 200 - duration: 34.942357ms + duration: 60.22825ms - id: 81 request: proto: HTTP/1.1 @@ -3999,8 +4001,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=05c3f641-bf82-4ee2-b2a3-fdbb63665fdb&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=657bc1bb-8d70-4213-9539-b99bfa05db13&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -4008,20 +4010,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-19T15:32:51.078423Z","id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"657bc1bb-8d70-4213-9539-b99bfa05db13","mac_address":"02:00:00:17:3F:C8","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"5d805329-a070-446d-b701-343eb960e6da"},"tags":[],"updated_at":"2025-05-19T15:32:51.516485Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4029,10 +4031,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2380f3d-c349-488e-bdff-1470dd7e8d8e + - fe2226dc-3ce5-4ffc-a69d-0a89a22ceeca status: 200 OK code: 200 - duration: 59.90681ms + duration: 28.713292ms - id: 82 request: proto: HTTP/1.1 @@ -4048,8 +4050,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b224dbc0-d5b5-402e-b83b-33ecb11b52ce&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -4057,20 +4059,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 524 + content_length: 1735 uncompressed: false - body: '{"ips":[{"address":"172.16.36.2/22","created_at":"2025-05-19T15:32:35.101810Z","id":"86895dcc-ac30-48a9-951c-722732e603d9","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","mac_address":"02:00:00:12:3F:95","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"9bec03dd-82ba-4369-873d-665f9ce62099"},"tags":[],"updated_at":"2025-05-19T15:32:35.600856Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"},{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "524" + - "1735" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4078,10 +4080,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ce4e879-b889-4bd9-aa73-764bf0b1f659 + - 97d0d267-bf8c-44aa-9e18-ba09eb3b3fc1 status: 200 OK code: 200 - duration: 112.036465ms + duration: 27.27025ms - id: 83 request: proto: HTTP/1.1 @@ -4097,8 +4099,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=2df393b9-afc2-43f0-8bd3-5aca94254820&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -4106,20 +4108,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1068 + content_length: 509 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":2}' + body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:24:13.813194Z","id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"2df393b9-afc2-43f0-8bd3-5aca94254820","mac_address":"02:00:00:16:36:B5","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"4ad24b96-4ae4-400c-af10-b6f51a74314c"},"tags":[],"updated_at":"2025-06-30T15:24:15.230801Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1068" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4127,10 +4129,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ceb050c-923a-4191-99ed-e09df44e0454 + - c52a199a-58d3-42a7-8adb-fef863f64587 status: 200 OK code: 200 - duration: 47.503929ms + duration: 51.361208ms - id: 84 request: proto: HTTP/1.1 @@ -4146,8 +4148,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=58612a64-0549-4877-a0c6-0a149a7e69c2&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=d62bdb23-d968-4ffe-99c6-133b04c85596&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -4155,20 +4157,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 3122 + content_length: 509 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 5d805329-a070-446d-b701-343eb960e6da","destination":"172.16.32.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 4e908006-5d93-468e-9089-cb26ddf8f165","destination":"fd63:256c:45f7:fe44::/64","id":"","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:57.557480Z","description":"","destination":"0.0.0.0/0","id":"0079528e-b812-4052-92f7-b78af1f45a88","is_read_only":true,"nexthop_private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","nexthop_resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:57.557480Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":6}' + body: '{"ips":[{"address":"172.16.20.3/22","created_at":"2025-06-30T15:24:31.413535Z","id":"f2845636-2497-43f5-b71d-5ec4df304910","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"d62bdb23-d968-4ffe-99c6-133b04c85596","mac_address":"02:00:00:10:2E:6F","name":"tf-gw-route","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"3b1ee017-aa5e-4d88-b2f4-0b42fff965b8"},"tags":[],"updated_at":"2025-06-30T15:24:32.402329Z","zone":null}],"total_count":1}' headers: Content-Length: - - "3122" + - "509" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4176,10 +4178,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ec27f3e-ad4c-44b8-94bf-91870328e366 + - 6ee80f23-e04f-4964-a165-15f24ec5160c status: 200 OK code: 200 - duration: 63.564142ms + duration: 58.932083ms - id: 85 request: proto: HTTP/1.1 @@ -4195,8 +4197,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=40c1e776-dde0-4693-9b46-d9d8f89d80a2&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?is_ipv6=true&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -4204,20 +4206,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1575 + content_length: 1039 uncompressed: false - body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 9bec03dd-82ba-4369-873d-665f9ce62099","destination":"172.16.36.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-05-19T15:32:18.632606Z","description":"Generated route for subnet 61cbf55d-1505-402a-949f-0db0cbafd6e0","destination":"fd63:256c:45f7:b19a::/64","id":"","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-05-19T15:32:18.632606Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-05-19T15:32:41.531151Z","description":"","destination":"0.0.0.0/0","id":"27ab247d-d11b-43d4-a044-64e28635c878","is_read_only":true,"nexthop_private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","nexthop_resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","region":"fr-par","tags":[],"updated_at":"2025-05-19T15:32:41.531151Z","vpc_id":"7491ea89-816d-42c2-bfe1-1bd291e4c176"}}],"total_count":3}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":2}' headers: Content-Length: - - "1575" + - "1039" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:05 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4225,10 +4227,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 420ee5f0-ae80-46c9-86c1-510214034f67 + - d13770dd-46dd-4fe8-8dd2-b3d49ed7b9df status: 200 OK code: 200 - duration: 60.509638ms + duration: 220.18175ms - id: 86 request: proto: HTTP/1.1 @@ -4244,8 +4246,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -4253,20 +4255,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 3037 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:58.464576Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 3b1ee017-aa5e-4d88-b2f4-0b42fff965b8","destination":"172.16.20.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c175f945-e17c-4909-b81e-71aff33de567","destination":"fd46:78ab:30b8:f559::/64","id":"","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:38.519686Z","description":"","destination":"0.0.0.0/0","id":"47b23b1c-28f7-4230-acbe-2affa6fdefed","is_read_only":true,"nexthop_private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","nexthop_resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:38.519686Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":6}' headers: Content-Length: - - "426" + - "3037" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4274,10 +4276,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dd28f28-976e-4926-aa06-35a375712f83 + - f9333d33-0c34-44c9-98a8-a893fc816eb3 status: 200 OK code: 200 - duration: 47.755211ms + duration: 226.6585ms - id: 87 request: proto: HTTP/1.1 @@ -4293,8 +4295,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes-with-nexthop?nexthop_private_network_id=6c7adeac-124d-4e43-a86c-6e0124f85a02&nexthop_resource_type=unknown_type&order_by=created_at_asc&vpc_id=a8158600-2717-41cd-a673-de50cb3a6ef9 method: GET response: proto: HTTP/2.0 @@ -4302,20 +4304,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 426 + content_length: 1532 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"ready","updated_at":"2025-05-19T15:32:45.605974Z","zone":"fr-par-1"}' + body: '{"routes":[{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet 4ad24b96-4ae4-400c-af10-b6f51a74314c","destination":"172.16.12.0/22","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":null,"nexthop_resource_type":"unknown_type","route":{"created_at":"2025-06-30T15:23:59.385683Z","description":"Generated route for subnet c1bcd070-750b-4411-8209-2776bca31d80","destination":"fd46:78ab:30b8:8b3::/64","id":"","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":null,"region":"fr-par","tags":["generated"],"updated_at":"2025-06-30T15:23:59.385683Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}},{"nexthop_ip":null,"nexthop_name":"tf-gw-route","nexthop_resource_type":"vpc_gateway_network","route":{"created_at":"2025-06-30T15:24:21.779862Z","description":"","destination":"0.0.0.0/0","id":"0a43314f-1c6e-4c4e-ac42-85b6f1fbdc1f","is_read_only":true,"nexthop_private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","nexthop_resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","region":"fr-par","tags":[],"updated_at":"2025-06-30T15:24:21.779862Z","vpc_id":"a8158600-2717-41cd-a673-de50cb3a6ef9"}}],"total_count":3}' headers: Content-Length: - - "426" + - "1532" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4323,10 +4325,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11fbbd4f-1a6f-449a-81d2-b952b5715eed + - c40f81d7-f6ee-458b-aeb7-fc3415a505e8 status: 200 OK code: 200 - duration: 49.425ms + duration: 225.062291ms - id: 88 request: proto: HTTP/1.1 @@ -4342,29 +4344,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"detaching","updated_at":"2025-05-19T15:33:06.510117Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:26.213205Z","zone":"fr-par-1"}' headers: Content-Length: - - "430" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4372,10 +4374,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6750009d-5d90-46fc-93ab-cf6c72f633ed + - 1427a216-7308-47ce-8893-52cc92e7a0ba status: 200 OK code: 200 - duration: 61.869044ms + duration: 43.30725ms - id: 89 request: proto: HTTP/1.1 @@ -4391,8 +4393,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -4400,20 +4402,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:51.175575Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"657bc1bb-8d70-4213-9539-b99bfa05db13","ipam_ip_id":"d331dfe0-fe0a-4da1-9e9e-4e6f3f1b3f1c","mac_address":"02:00:00:17:3F:C8","masquerade_enabled":true,"private_network_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","push_default_route":true,"status":"detaching","updated_at":"2025-05-19T15:33:06.510117Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:24:42.488182Z","zone":"fr-par-1"}' headers: Content-Length: - - "430" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4421,10 +4423,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62dd8cc0-a3d7-496d-b6c7-24b3a126a581 + - 9efece1c-edbb-4f1c-b3c4-8596ad0d6eb1 status: 200 OK code: 200 - duration: 44.971984ms + duration: 48.98ms - id: 90 request: proto: HTTP/1.1 @@ -4440,8 +4442,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: DELETE response: proto: HTTP/2.0 @@ -4449,20 +4451,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"detaching","updated_at":"2025-05-19T15:33:06.569287Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:24:50.151234Z","zone":"fr-par-1"}' headers: Content-Length: - - "430" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4470,10 +4472,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8885f01b-e8d9-4d3c-8317-60614d634241 + - 75223030-1a97-41a6-9451-06a11151f4b2 status: 200 OK code: 200 - duration: 147.164565ms + duration: 81.862417ms - id: 91 request: proto: HTTP/1.1 @@ -4489,29 +4491,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 430 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-19T15:32:35.230773Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","ipam_ip_id":"86895dcc-ac30-48a9-951c-722732e603d9","mac_address":"02:00:00:12:3F:95","masquerade_enabled":true,"private_network_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","push_default_route":true,"status":"detaching","updated_at":"2025-05-19T15:33:06.569287Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:24:50.165685Z","zone":"fr-par-1"}' headers: Content-Length: - - "430" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:06 GMT + - Mon, 30 Jun 2025 15:24:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4519,10 +4521,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbf7182a-0aa9-4cb9-b2cb-cdb0391bf490 + - a42f137f-37d4-4fa6-a4a6-a140e123ebfe status: 200 OK code: 200 - duration: 47.014131ms + duration: 73.1015ms - id: 92 request: proto: HTTP/1.1 @@ -4538,8 +4540,106 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/657bc1bb-8d70-4213-9539-b99bfa05db13 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-06-30T15:24:14.831534Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"2df393b9-afc2-43f0-8bd3-5aca94254820","ipam_ip_id":"36ed7fed-a58f-4c5e-b3d7-dba38656f385","mac_address":"02:00:00:16:36:B5","masquerade_enabled":true,"private_network_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:24:50.151234Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:24:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3b7f9f32-7618-49f0-92bd-e9d8e5caf489 + status: 200 OK + code: 200 + duration: 42.870583ms + - id: 93 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 420 + uncompressed: false + body: '{"created_at":"2025-06-30T15:24:32.015264Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"d62bdb23-d968-4ffe-99c6-133b04c85596","ipam_ip_id":"f2845636-2497-43f5-b71d-5ec4df304910","mac_address":"02:00:00:10:2E:6F","masquerade_enabled":true,"private_network_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:24:50.165685Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "420" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:24:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2ebbf4ec-fefc-4a30-a462-fc4706f32487 + status: 200 OK + code: 200 + duration: 43.780583ms + - id: 94 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/2df393b9-afc2-43f0-8bd3-5aca94254820 method: GET response: proto: HTTP/2.0 @@ -4549,7 +4649,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"657bc1bb-8d70-4213-9539-b99bfa05db13","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"2df393b9-afc2-43f0-8bd3-5aca94254820","type":"not_found"}' headers: Content-Length: - "136" @@ -4558,9 +4658,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:11 GMT + - Mon, 30 Jun 2025 15:24:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4568,11 +4668,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - feaa38f0-9cba-4077-89e8-5c1bba538531 + - d8a80e4c-2616-4044-b80f-b503ddcbaeb4 status: 404 Not Found code: 404 - duration: 32.119198ms - - id: 93 + duration: 29.460291ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4587,8 +4687,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b224dbc0-d5b5-402e-b83b-33ecb11b52ce + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/d62bdb23-d968-4ffe-99c6-133b04c85596 method: GET response: proto: HTTP/2.0 @@ -4598,7 +4698,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b224dbc0-d5b5-402e-b83b-33ecb11b52ce","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"d62bdb23-d968-4ffe-99c6-133b04c85596","type":"not_found"}' headers: Content-Length: - "136" @@ -4607,9 +4707,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:11 GMT + - Mon, 30 Jun 2025 15:24:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4617,11 +4717,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 539939d5-b996-4e4a-905c-fdddc8210ca8 + - e433265e-4c35-4d50-a7d3-678eeeb326f3 status: 404 Not Found code: 404 - duration: 19.889481ms - - id: 94 + duration: 29.436084ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4636,8 +4736,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -4645,20 +4745,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 929 + content_length: 902 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:32:58.584642Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:42.667834Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "929" + - "902" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:11 GMT + - Mon, 30 Jun 2025 15:24:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4666,11 +4766,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85823a24-9a80-4b48-b57e-27df5c176a87 + - 93a75b09-3714-438f-93fd-ec8b18d7c102 status: 200 OK code: 200 - duration: 28.225864ms - - id: 95 + duration: 30.408458ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4685,8 +4785,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941?delete_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -4694,20 +4794,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 930 + content_length: 903 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-19T15:32:23.984721Z","gateway_networks":[],"id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","ipv4":{"address":"51.158.65.168","created_at":"2025-05-19T15:32:23.956418Z","gateway_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","id":"62e914bd-0ddb-4366-9f56-9c500d6e5f0d","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"168-65-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-05-19T15:32:23.956418Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-19T15:33:11.791076Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:24:01.711317Z","gateway_networks":[],"id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","ipv4":{"address":"51.158.78.190","created_at":"2025-06-30T15:24:01.681923Z","gateway_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","id":"40b2c3eb-dd3d-4929-9dc9-694db26be5a8","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"190-78-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:24:01.681923Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-gw-route","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:24:55.330967Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "930" + - "903" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:11 GMT + - Mon, 30 Jun 2025 15:24:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4715,11 +4815,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a68efbf1-5761-4309-aa30-4d12d4b71e8f + - 72d35255-0642-43c2-a2b6-0c05b1e02063 status: 200 OK code: 200 - duration: 96.979483ms - - id: 96 + duration: 53.525041ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4734,8 +4834,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/abdbc9ef-a719-4aec-99e8-c6b5e2835691 method: GET response: proto: HTTP/2.0 @@ -4745,7 +4845,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"d4a89f7d-e1d3-4fb0-bf4f-ec8f41d4a941","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"abdbc9ef-a719-4aec-99e8-c6b5e2835691","type":"not_found"}' headers: Content-Length: - "128" @@ -4754,9 +4854,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:11 GMT + - Mon, 30 Jun 2025 15:24:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4764,11 +4864,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4d2ac6a-f357-40a3-960b-9b6439418504 + - 5545c554-31e5-4ee8-b4a0-17e28041a207 status: 404 Not Found code: 404 - duration: 22.212519ms - - id: 97 + duration: 21.858875ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4783,8 +4883,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: DELETE response: proto: HTTP/2.0 @@ -4801,9 +4901,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:13 GMT + - Mon, 30 Jun 2025 15:24:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4811,11 +4911,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc9b737c-0594-4c5e-897f-2182b61060b2 + - bbe5259d-90f0-4c3c-98f5-44bd4663cde6 status: 204 No Content code: 204 - duration: 1.705520753s - - id: 98 + duration: 2.077207417s + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -4830,8 +4930,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: DELETE response: proto: HTTP/2.0 @@ -4848,9 +4948,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:12 GMT + - Mon, 30 Jun 2025 15:24:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4858,11 +4958,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d36c910f-0f09-4d56-bea3-a84a59615115 + - 1684ccb4-71d0-4cd4-9dba-688e66edc1de status: 204 No Content code: 204 - duration: 1.779808747s - - id: 99 + duration: 2.796119625s + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -4877,8 +4977,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7491ea89-816d-42c2-bfe1-1bd291e4c176 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a8158600-2717-41cd-a673-de50cb3a6ef9 method: DELETE response: proto: HTTP/2.0 @@ -4895,9 +4995,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:13 GMT + - Mon, 30 Jun 2025 15:24:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4905,11 +5005,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b4b24ae0-e681-4705-9cc8-6eef6f056d04 + - 577e94f6-cda5-435c-8287-6fb83965e71f status: 204 No Content code: 204 - duration: 111.488377ms - - id: 100 + duration: 80.428708ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -4924,8 +5024,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/05c3f641-bf82-4ee2-b2a3-fdbb63665fdb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6c7adeac-124d-4e43-a86c-6e0124f85a02 method: GET response: proto: HTTP/2.0 @@ -4935,7 +5035,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"05c3f641-bf82-4ee2-b2a3-fdbb63665fdb","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"6c7adeac-124d-4e43-a86c-6e0124f85a02","type":"not_found"}' headers: Content-Length: - "136" @@ -4944,9 +5044,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:13 GMT + - Mon, 30 Jun 2025 15:24:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4954,11 +5054,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80764cc4-8371-4b90-a7fa-8c021dc25981 + - e9b9258e-f3cc-48dc-9fa7-028065be273b status: 404 Not Found code: 404 - duration: 26.700074ms - - id: 101 + duration: 24.532375ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -4973,8 +5073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/40c1e776-dde0-4693-9b46-d9d8f89d80a2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/58612a64-0549-4877-a0c6-0a149a7e69c2 method: GET response: proto: HTTP/2.0 @@ -4984,7 +5084,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"40c1e776-dde0-4693-9b46-d9d8f89d80a2","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"58612a64-0549-4877-a0c6-0a149a7e69c2","type":"not_found"}' headers: Content-Length: - "136" @@ -4993,9 +5093,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:13 GMT + - Mon, 30 Jun 2025 15:24:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5003,7 +5103,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c39849dc-3637-442d-954d-09a78da7ffef + - eee9c23c-3176-4146-b3ac-df0d5cc0af96 status: 404 Not Found code: 404 - duration: 22.949695ms + duration: 25.8365ms diff --git a/internal/services/vpc/testdata/data-source-vp-cs-basic.cassette.yaml b/internal/services/vpc/testdata/data-source-vp-cs-basic.cassette.yaml index c94e041603..e3737beb48 100644 --- a/internal/services/vpc/testdata/data-source-vp-cs-basic.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-vp-cs-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-datasource0","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_vpcs","basic"],"enable_routing":false}' + body: '{"name":"tf-vpc-datasource0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_vpcs","basic"],"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.4; darwin; arm64) 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: 421 + content_length: 451 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":false,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.152682Z"}' headers: Content-Length: - - "421" + - "451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dee5d719-eb83-46b1-a67d-39f07767056b + - e75fc96c-806d-40bd-a27e-a4424ff264eb status: 200 OK code: 200 - duration: 110.652208ms + duration: 93.620416ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/0512ae1f-963c-4650-8ad3-8f64d775e10e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "421" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c2249ff0-82c2-4ff6-b270-67d3957d2a15 + - f14a0ad8-92d2-4130-8fca-c85fe82337ea status: 200 OK code: 200 - duration: 37.642375ms + duration: 33.260292ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,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/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "409" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be8c69b9-eba9-45e6-a75a-f6628807350c + - 99aa5689-2177-40fd-b57e-fd5607d66b6b status: 200 OK code: 200 - duration: 32.486167ms + duration: 28.112208ms - id: 3 request: proto: HTTP/1.1 @@ -165,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/vpcs/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "421" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,11 +197,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e44a5612-5ffd-4845-a837-dff574bd9772 + - 57b45cdd-fff1-4c8d-a9e6-901e0716051a status: 200 OK code: 200 - duration: 35.582291ms + duration: 32.573416ms - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 450 + uncompressed: false + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' + headers: + Content-Length: + - "450" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0b08c7f0-74c1-4fca-a380-854eba0b8d06 + status: 200 OK + code: 200 + duration: 25.74825ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -210,13 +261,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-datasource1","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":["terraform-test","data_scaleway_vpcs","basic"],"enable_routing":false}' + body: '{"name":"tf-vpc-datasource1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_vpcs","basic"],"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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -225,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 451 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}' + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":false,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.869973Z"}' headers: Content-Length: - - "421" + - "451" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,11 +297,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8be6922f-7d78-4a24-b32f-e05e4574dea4 + - f219c854-a08e-42e2-acc4-66d5a3ccff2c status: 200 OK code: 200 - duration: 82.1455ms - - id: 5 + duration: 86.936ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 450 + uncompressed: false + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}' + headers: + Content-Length: + - "450" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:48 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3efd895f-961e-4daf-b9a6-6cac882ea174 + status: 200 OK + code: 200 + duration: 32.753167ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -265,8 +367,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/6ef9ad20-3cb4-4083-82a6-471fc548f0d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282 method: GET response: proto: HTTP/2.0 @@ -274,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}' + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}' headers: Content-Length: - - "409" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6df32722-f51e-4147-b53f-5281739b6de6 + - 1775fdf8-1b16-48ed-bf50-695160f18f1f status: 200 OK code: 200 - duration: 27.450833ms - - id: 6 + duration: 27.556834ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -314,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/vpc/v2/regions/fr-par/vpcs/6ef9ad20-3cb4-4083-82a6-471fc548f0d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: GET response: proto: HTTP/2.0 @@ -323,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "409" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e1d0e24-d452-4d05-ada9-a7ba452efcb6 + - ee72e28c-73a1-4960-ad2a-f604d9277565 status: 200 OK code: 200 - duration: 32.203917ms - - id: 7 + duration: 22.529416ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -363,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/vpc/v2/regions/fr-par/vpcs/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282 method: GET response: proto: HTTP/2.0 @@ -372,20 +474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}' headers: Content-Length: - - "421" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 726e67ef-efc4-4d9d-81d9-516f1e09bb0a + - 4d6ea3e5-f96c-46a8-8e03-bda3c5309fe0 status: 200 OK code: 200 - duration: 31.882291ms - - id: 8 + duration: 26.891958ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -412,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/vpc/v2/regions/fr-par/vpcs/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: GET response: proto: HTTP/2.0 @@ -421,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "409" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ec9c3ed-215c-49d3-971b-233b14cfdafe + - a8d9bf76-04c6-47b0-827f-89988136df47 status: 200 OK code: 200 - duration: 33.029041ms - - id: 9 + duration: 37.102959ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -461,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/vpc/v2/regions/fr-par/vpcs/6ef9ad20-3cb4-4083-82a6-471fc548f0d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282 method: GET response: proto: HTTP/2.0 @@ -470,20 +572,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}' + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}' headers: Content-Length: - - "421" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0f5819c-d8ab-4a3e-a066-25c5df1687bd + - 41e69303-d73a-4d0b-ae62-3c00e42cdafd status: 200 OK code: 200 - duration: 35.63025ms - - id: 10 + duration: 39.083041ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -510,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/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test method: GET response: proto: HTTP/2.0 @@ -519,20 +621,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "872" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edb47f37-a90c-46b3-8701-6cd85747077b + - 8573d09e-e4a8-4b90-9ec3-ac3d0a82eeef status: 200 OK code: 200 - duration: 76.595042ms - - id: 11 + duration: 52.758209ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -559,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/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -568,20 +670,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 265c2227-b837-453c-a75d-414ef93a1448 + - d33bfd88-7031-4345-83f3-bc4ef5146985 status: 200 OK code: 200 - duration: 81.670584ms - - id: 12 + duration: 63.086375ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -608,7 +710,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -628,9 +730,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,11 +740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aacc6006-791e-4462-9408-e340264f2313 + - bb7cc83a-442f-4b67-8d36-c0c0bd10c365 status: 200 OK code: 200 - duration: 114.135541ms - - id: 13 + duration: 77.424958ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -657,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/vpcs?name=tf-vpc-datasource&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test method: GET response: proto: HTTP/2.0 @@ -666,20 +768,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,11 +789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a94b87b1-7a3b-46f1-a656-638f2021ed98 + - ef1013a9-ac2d-414d-ab28-a5f4a9c96bfc status: 200 OK code: 200 - duration: 72.055166ms - - id: 14 + duration: 47.399ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -706,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/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -715,20 +817,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,11 +838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 316c288e-6320-461e-b8c7-f69d8de32cf4 + - ca4123bb-1cc9-4d03-b8e5-d615fde01d4c status: 200 OK code: 200 - duration: 71.165458ms - - id: 15 + duration: 51.702125ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -755,7 +857,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -764,20 +866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 27 uncompressed: false body: '{"total_count":0,"vpcs":[]}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,11 +887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2cfcde4e-f15e-4f10-b24b-b9b56242cdc2 + - 3fab50b9-9878-444f-b04f-a8bf0c90816a status: 200 OK code: 200 - duration: 86.301833ms - - id: 16 + duration: 88.981959ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -804,7 +906,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test method: GET response: @@ -813,20 +915,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "872" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,11 +936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ee577b6-b3eb-4adc-ada4-1ce5e54f61fa + - b8d0a689-914a-4378-9485-eea11280f389 status: 200 OK code: 200 - duration: 81.589666ms - - id: 17 + duration: 51.826125ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -853,7 +955,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -862,20 +964,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,11 +985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a9c8d1b-c522-4d2a-a2a8-8b5d0f8f6982 + - 3a5ec86c-5955-444f-99ab-6b889c2a4ccf status: 200 OK code: 200 - duration: 83.208333ms - - id: 18 + duration: 52.851041ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -902,7 +1004,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -911,20 +1013,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 27 uncompressed: false body: '{"total_count":0,"vpcs":[]}' headers: Content-Length: - - "28" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,11 +1034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3fa0924-d625-4c22-9660-1b4d8d30293e + - aa00f139-22d1-4c88-a7f9-83557af72308 status: 200 OK code: 200 - duration: 87.227833ms - - id: 19 + duration: 80.862583ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -951,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/vpc/v2/regions/fr-par/vpcs/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: GET response: proto: HTTP/2.0 @@ -960,20 +1062,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"}' + body: '{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"}' headers: Content-Length: - - "409" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,11 +1083,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b477fbe-a8a4-4692-b061-882ea5cb76c3 + - 865f8f1c-5d54-4dfc-bb5a-2772eae7f8d9 status: 200 OK code: 200 - duration: 34.053208ms - - id: 20 + duration: 30.355042ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1000,8 +1102,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/6ef9ad20-3cb4-4083-82a6-471fc548f0d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282 method: GET response: proto: HTTP/2.0 @@ -1009,20 +1111,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 421 + content_length: 450 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}' + body: '{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}' headers: Content-Length: - - "421" + - "450" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,11 +1132,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2b7e1ae-cee8-4f1b-a98a-63b4b1133d72 + - 47a15e02-d061-41e7-9eaf-deabc0d73c64 status: 200 OK code: 200 - duration: 41.123625ms - - id: 21 + duration: 34.50475ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1049,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/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1058,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "872" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,11 +1181,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f0356d0-7c38-42e1-84b6-1288dee2d347 + - 2dc60f49-bc9d-48c0-ae0b-a941451bb051 status: 200 OK code: 200 - duration: 65.08275ms - - id: 22 + duration: 48.529459ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1098,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/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test method: GET response: proto: HTTP/2.0 @@ -1107,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,11 +1230,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7d01493-cb08-4e1d-97c1-3ce10da9b410 + - a7e6ed81-a507-4404-8ee3-1b665ac54f50 status: 200 OK code: 200 - duration: 64.586208ms - - id: 23 + duration: 52.628875ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1147,7 +1249,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -1167,9 +1269,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1177,11 +1279,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac7a47a3-c6a7-449f-98b4-5ce6052a8d38 + - 73963064-caa1-47d4-bb40-83378fddaa71 status: 200 OK code: 200 - duration: 92.698916ms - - id: 24 + duration: 70.289875ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1196,8 +1298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test method: GET response: proto: HTTP/2.0 @@ -1205,20 +1307,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 846 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "846" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1226,11 +1328,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03c51729-011b-406e-b1a2-aab02d5f5eef + - 82fe2346-d54d-40d9-9485-8e1f13c07df4 status: 200 OK code: 200 - duration: 172.978916ms - - id: 25 + duration: 52.882375ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1245,8 +1347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?order_by=created_at_asc&tags=data_scaleway_vpcs&tags=terraform-test + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1254,20 +1356,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 872 + content_length: 928 uncompressed: false - body: '{"total_count":2,"vpcs":[{"created_at":"2025-01-28T10:05:15.965501Z","id":"0512ae1f-963c-4650-8ad3-8f64d775e10e","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:15.965501Z"},{"created_at":"2025-01-28T10:05:19.597631Z","id":"6ef9ad20-3cb4-4083-82a6-471fc548f0d3","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-01-28T10:05:19.597631Z"}]}' + body: '{"total_count":2,"vpcs":[{"created_at":"2025-06-30T15:21:48.152682Z","custom_routes_propagation_enabled":true,"id":"80b6aca9-372c-499f-9899-33c6cfc9afe7","is_default":false,"name":"tf-vpc-datasource0","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.190694Z"},{"created_at":"2025-06-30T15:21:48.869973Z","custom_routes_propagation_enabled":true,"id":"9d2cb809-805b-430e-bf8b-ae39c7a13282","is_default":false,"name":"tf-vpc-datasource1","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":["terraform-test","data_scaleway_vpcs","basic"],"updated_at":"2025-06-30T15:21:48.926632Z"}]}' headers: Content-Length: - - "872" + - "928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1275,11 +1377,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaf6be77-53bf-46e8-8b9f-3c540fdc196c + - 7c7abf14-4672-474a-b334-a3388015c492 status: 200 OK code: 200 - duration: 170.968292ms - - id: 26 + duration: 54.797209ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1294,7 +1396,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs?name=tf-vpc-datasource&order_by=created_at_asc method: GET response: @@ -1314,9 +1416,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1324,11 +1426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ef37640-db03-48fd-b311-f2ce8ea2836f + - 9902dff9-fa74-4057-a1a6-4453bf42313b status: 200 OK code: 200 - duration: 181.248542ms - - id: 27 + duration: 78.759042ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1343,8 +1445,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/0512ae1f-963c-4650-8ad3-8f64d775e10e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9d2cb809-805b-430e-bf8b-ae39c7a13282 method: DELETE response: proto: HTTP/2.0 @@ -1361,9 +1463,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1371,11 +1473,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf5883df-d118-44e3-8795-88c1102234e6 + - f72c5f12-e959-4890-a305-40f137ee8289 status: 204 No Content code: 204 - duration: 72.049208ms - - id: 28 + duration: 95.367375ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1390,8 +1492,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/6ef9ad20-3cb4-4083-82a6-471fc548f0d3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/80b6aca9-372c-499f-9899-33c6cfc9afe7 method: DELETE response: proto: HTTP/2.0 @@ -1408,9 +1510,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1418,7 +1520,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d5389ad-1061-4087-9122-4b69b0298043 + - 462d1606-91c7-4691-b19d-76524d588cd3 status: 204 No Content code: 204 - duration: 111.272291ms + duration: 96.982417ms diff --git a/internal/services/vpc/testdata/data-source-vpc-basic.cassette.yaml b/internal/services/vpc/testdata/data-source-vpc-basic.cassette.yaml index 82213b28fb..012b2945a2 100644 --- a/internal/services/vpc/testdata/data-source-vpc-basic.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-vpc-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"DataSourceVPC_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"DataSourceVPC_Basic","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.4; darwin; arm64) 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: 365 + content_length: 407 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":false,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.162413Z"}' headers: Content-Length: - - "365" + - "407" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20944fbd-32bb-48eb-8cff-eb52e0652144 + - 4392b6aa-723d-40f3-afc5-3cd197370d87 status: 200 OK code: 200 - duration: 123.365167ms + duration: 107.580334ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "365" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67ec8f8e-8d43-445e-b6ec-65a11180eaa9 + - 413892df-1cb5-4e1c-b315-93930d0143e0 status: 200 OK code: 200 - duration: 31.51875ms + duration: 44.327041ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "365" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 09dc9d17-b204-45b1-92fd-730ece669b50 + - 0af0214c-5a45-480c-8203-21fd798e537f status: 200 OK code: 200 - duration: 25.26625ms + duration: 36.695292ms - id: 3 request: proto: HTTP/1.1 @@ -165,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/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "375" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfe97fc2-1dcc-4efa-a911-6faa146f3369 + - 3427ef59-2df1-40fc-83db-bc372b4eb2b7 status: 200 OK code: 200 - duration: 38.085917ms + duration: 28.2555ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +216,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -223,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "375" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d4c1e32-055c-4ebf-a37a-2b2ecb906653 + - 458d5437-54d0-4b47-909a-7ab197fde2e7 status: 200 OK code: 200 - duration: 34.658625ms + duration: 26.287583ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +265,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?name=DataSourceVPC_Basic&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -272,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 406 uncompressed: false - body: '{"total_count":1,"vpcs":[{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}]}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "392" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02c5b761-3c29-46d1-8d0d-a0221b14984e + - 40fdfa0f-d59a-47fe-affc-9bd19029c64d status: 200 OK code: 200 - duration: 72.365584ms + duration: 28.41ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -321,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"total_count":1,"vpcs":[{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}]}' headers: Content-Length: - - "375" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 611d945e-e53d-4522-bc4d-124f4de0fe58 + - 2c5273fb-a250-4445-80c8-3bcb359b192d status: 200 OK code: 200 - duration: 32.587208ms + duration: 57.239709ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +363,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -370,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "375" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a89dd402-e048-49f7-90e0-e104c1b4d413 + - 3d9720e7-aae3-4f45-b727-b141e54de89d status: 200 OK code: 200 - duration: 38.071333ms + duration: 31.00575ms - id: 8 request: proto: HTTP/1.1 @@ -410,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -419,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 406 uncompressed: false - body: '{"total_count":1,"vpcs":[{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}]}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "392" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bb92013-5aed-4ad9-8124-bfa2cbf4f246 + - 6b1080e2-e262-4b63-a31f-d2f4ec64321e status: 200 OK code: 200 - duration: 73.587459ms + duration: 28.559209ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -468,20 +470,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"total_count":1,"vpcs":[{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}]}' headers: Content-Length: - - "365" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34ae35fd-5ff3-4552-94ea-2934e64fb008 + - b5bed658-813c-432f-8fec-59f153eaff99 status: 200 OK code: 200 - duration: 35.726792ms + duration: 68.850542ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +510,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -517,20 +519,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "365" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +540,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8520800-32c2-482d-ad3b-fe9e6bfa7e56 + - 17c71187-41d1-4dda-ad49-c978051656e1 status: 200 OK code: 200 - duration: 36.137042ms + duration: 25.366167ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -566,20 +568,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "365" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +589,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52e8868d-a061-4e5f-b7d5-c8a20b02c1fd + - fd98b3de-ef6c-441c-a9ea-733011cf4e2d status: 200 OK code: 200 - duration: 29.880708ms + duration: 25.927958ms - id: 12 request: proto: HTTP/1.1 @@ -606,8 +608,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -615,20 +617,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 406 uncompressed: false - body: '{"total_count":1,"vpcs":[{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}]}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "403" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +638,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 167e33da-5cdb-412d-a30c-875ca2821379 + - ae366f70-c2ae-4b97-a9c7-164c4f7e6644 status: 200 OK code: 200 - duration: 70.535292ms + duration: 29.724833ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +657,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -664,20 +666,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"total_count":1,"vpcs":[{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}]}' headers: Content-Length: - - "375" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +687,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ca33e9b-a4bf-4f37-8b51-9b22d7d38897 + - da15e54b-cec9-4a22-8735-be078bab081a status: 200 OK code: 200 - duration: 38.327792ms + duration: 51.622208ms - id: 14 request: proto: HTTP/1.1 @@ -704,8 +706,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -713,20 +715,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "375" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +736,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66628e6c-c967-4f3d-bf90-e4cf1f9df018 + - 7c297ea5-3661-4e23-9778-fc8d4f228235 status: 200 OK code: 200 - duration: 39.481833ms + duration: 40.712792ms - id: 15 request: proto: HTTP/1.1 @@ -753,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -762,20 +764,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "365" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +785,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38ea67a8-ca3e-424c-94a6-9c66b3832ca0 + - 7105d5e7-68fd-473f-8d0b-3c38e0a27425 status: 200 OK code: 200 - duration: 36.915584ms + duration: 36.447958ms - id: 16 request: proto: HTTP/1.1 @@ -802,8 +804,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -811,20 +813,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 406 uncompressed: false - body: '{"total_count":1,"vpcs":[{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}]}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "403" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +834,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58be770f-c8d9-43f2-9a5a-58522f72ed5c + - 4e3f1b8f-6af8-49d4-949e-08c4c363e6d0 status: 200 OK code: 200 - duration: 81.9645ms + duration: 31.205167ms - id: 17 request: proto: HTTP/1.1 @@ -851,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -860,20 +862,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 365 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"total_count":1,"vpcs":[{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}]}' headers: Content-Length: - - "365" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +883,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b36610f3-ebbd-4917-ac7d-88f629891b15 + - 96fe9145-11ed-417e-9a52-53cad6fd940d status: 200 OK code: 200 - duration: 30.10175ms + duration: 61.010083ms - id: 18 request: proto: HTTP/1.1 @@ -900,8 +902,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -909,20 +911,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 406 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "375" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +932,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 032f58d6-4ae7-4240-84b1-b525d589a537 + - a8007b4b-b621-4f96-a836-91dda0c63943 status: 200 OK code: 200 - duration: 31.669666ms + duration: 30.542333ms - id: 19 request: proto: HTTP/1.1 @@ -949,8 +951,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -958,20 +960,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 392 + content_length: 406 uncompressed: false - body: '{"total_count":1,"vpcs":[{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}]}' + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' headers: Content-Length: - - "392" + - "406" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +981,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6d595b8-2ced-432c-98ff-2aec7a578e92 + - 11796bf7-4489-4078-89ff-a721597a21e7 status: 200 OK code: 200 - duration: 81.231625ms + duration: 25.79325ms - id: 20 request: proto: HTTP/1.1 @@ -998,8 +1000,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?name=DataSourceVPC_Basic&order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1007,20 +1009,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 375 + content_length: 433 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.876528Z","id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","is_default":false,"name":"DataSourceVPC_Basic","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-28T10:05:15.876528Z"}' + body: '{"total_count":1,"vpcs":[{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}]}' headers: Content-Length: - - "375" + - "433" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1030,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f1746ed-6c4f-4113-ae08-39b359021e09 + - ead0c056-81a1-4500-aadd-957f899b2094 status: 200 OK code: 200 - duration: 30.051292ms + duration: 45.4ms - id: 21 request: proto: HTTP/1.1 @@ -1047,8 +1049,57 @@ 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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 406 + uncompressed: false + body: '{"created_at":"2025-06-30T15:21:48.162413Z","custom_routes_propagation_enabled":true,"id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","is_default":false,"name":"DataSourceVPC_Basic","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-06-30T15:21:48.204031Z"}' + headers: + Content-Length: + - "406" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:49 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 940394c0-fcc8-4876-927a-a147bba50a88 + status: 200 OK + code: 200 + duration: 23.051417ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: DELETE response: proto: HTTP/2.0 @@ -1065,9 +1116,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1075,11 +1126,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1688835e-2467-4a79-bc2f-35670c9c30ba + - fe73bf82-ca54-422a-9b61-9a653537a4e1 status: 204 No Content code: 204 - duration: 94.48375ms - - id: 22 + duration: 99.539792ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1094,8 +1145,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -1105,7 +1156,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","type":"not_found"}' headers: Content-Length: - "124" @@ -1114,9 +1165,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1124,11 +1175,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cee7df72-8dc2-47a8-b79f-514a155b6e44 + - cc09929b-f3ad-4863-a046-37590d811a74 status: 404 Not Found code: 404 - duration: 28.840917ms - - id: 23 + duration: 31.388792ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1143,8 +1194,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -1154,7 +1205,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","type":"not_found"}' headers: Content-Length: - "124" @@ -1163,9 +1214,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1173,11 +1224,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29fdd08c-35a0-458b-99d9-984c1e6ab994 + - 811dbced-90f9-4e39-a0fc-cbbfffd2f40a status: 404 Not Found code: 404 - duration: 34.917042ms - - id: 24 + duration: 23.49675ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1192,8 +1243,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/afe24c01-d044-4e6b-a3df-1f97c29e2914 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/db82024a-823d-4a48-b9eb-4797c74f7b8b method: GET response: proto: HTTP/2.0 @@ -1203,7 +1254,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"afe24c01-d044-4e6b-a3df-1f97c29e2914","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"db82024a-823d-4a48-b9eb-4797c74f7b8b","type":"not_found"}' headers: Content-Length: - "124" @@ -1212,9 +1263,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1222,7 +1273,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19a29409-dfa8-4018-9168-5204998334ed + - 99a6e7ad-4dec-46e6-956f-3b47811ed653 status: 404 Not Found code: 404 - duration: 39.068959ms + duration: 25.960167ms diff --git a/internal/services/vpc/testdata/data-source-vpc-default.cassette.yaml b/internal/services/vpc/testdata/data-source-vpc-default.cassette.yaml index 8dc8b7cb77..96d6101549 100644 --- a/internal/services/vpc/testdata/data-source-vpc-default.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-vpc-default.cassette.yaml @@ -16,7 +16,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?is_default=true&order_by=created_at_asc method: GET response: @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2204 + content_length: 5287 uncompressed: false - body: '{"total_count":6,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":3,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2023-11-02T12:32:36.753408Z","id":"d8431f76-a865-4d35-8a23-ee9ccf185275","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"50ab77d5-56bd-4981-a118-4e0fa5309b59","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-11-02T12:32:36.753408Z"},{"created_at":"2024-10-10T15:51:52.742925Z","id":"fc05c4f6-418f-4e88-9dc5-b424b1dd6a53","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"f5375b18-7efc-4416-ab13-c42af955602c","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-10T15:51:52.742925Z"},{"created_at":"2024-10-29T13:41:00.148384Z","id":"c62d8767-be77-4712-80b8-3d0ddf5a1055","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"18db5abf-6ea1-4d9d-b12c-5f2bb16afe97","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T13:41:00.148384Z"},{"created_at":"2024-10-29T15:03:02.329301Z","id":"ef089b99-cfb2-4a9f-93fa-aea0fa98ef71","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"c567f266-af4f-4da0-a35b-98c34086f991","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:03:02.329301Z"},{"created_at":"2024-10-29T15:13:11.792660Z","id":"a86b0009-d1d8-4661-88cf-874839eddde8","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:13:11.792660Z"}]}' + body: '{"total_count":13,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":11,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2024-08-02T15:53:09.243138Z","custom_routes_propagation_enabled":false,"id":"7c294b8c-5966-478c-a1c9-4e9b09584470","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e9b20612-74e7-445f-943a-42ff6c18a0fc","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-08-02T15:53:09.243138Z"},{"created_at":"2024-11-08T09:50:43.866237Z","custom_routes_propagation_enabled":false,"id":"7334fddf-ffe5-4e63-a67a-88f4d1cb55c3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"61aa24b8-bd03-4f01-9310-9da4fbcb9607","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T09:50:43.866237Z"},{"created_at":"2024-11-08T10:35:22.036820Z","custom_routes_propagation_enabled":false,"id":"ba65c7b0-c7cf-4f9e-9f82-d65abb4fd850","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"4cffcc2c-894e-4637-ac1f-c078ac8a0256","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:35:22.036820Z"},{"created_at":"2024-11-08T10:38:20.025449Z","custom_routes_propagation_enabled":false,"id":"4a22095c-0f22-49f7-8763-b2b6039b2566","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"da53e9b1-b39d-4a47-940d-6cc63ed87f03","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:38:20.025449Z"},{"created_at":"2024-11-08T10:40:56.675948Z","custom_routes_propagation_enabled":false,"id":"9e441afa-47f5-45b6-9f85-44c0dfe4a542","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"f88b54a0-1328-48b6-b78e-9a29dd9747a0","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:40:56.675948Z"},{"created_at":"2024-11-08T10:47:40.036628Z","custom_routes_propagation_enabled":false,"id":"c162ef44-7e13-4e53-8d16-2527b2eb2d9a","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"2e7b4cf7-4aa9-498c-9123-6dd93838d950","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:47:40.036628Z"},{"created_at":"2025-04-04T14:38:11.433881Z","custom_routes_propagation_enabled":false,"id":"2ba13540-3b01-45eb-9e64-ee3edb028ce9","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e4135d70-7aac-41f6-a508-9aea70d95bc4","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:38:11.433881Z"},{"created_at":"2025-04-04T14:45:48.467697Z","custom_routes_propagation_enabled":false,"id":"2ea93a70-a8a8-474e-b5cb-e74d432fc6b3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"84adc563-5f46-4c4c-b482-331cbdbbb896","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:45:48.467697Z"},{"created_at":"2025-04-04T14:46:53.952815Z","custom_routes_propagation_enabled":false,"id":"5a77a8f0-a89b-4e26-af06-cc0601e9c52c","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"db10ca2f-6470-4bf5-a90f-41d254bfe7e7","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:46:53.952815Z"},{"created_at":"2025-04-06T19:30:02.013706Z","custom_routes_propagation_enabled":false,"id":"62f55f26-9c58-4fcf-8db8-1201ce42ecd3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9ff66e03-20cb-4dba-bba4-8831b441c362","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:30:02.013706Z"},{"created_at":"2025-04-06T19:32:02.751762Z","custom_routes_propagation_enabled":false,"id":"bb39c2ca-2e11-49dd-90e5-320b7d37f1eb","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"fe3df59d-cf57-47cd-a46d-619c8846e305","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:32:02.751762Z"},{"created_at":"2025-04-07T07:38:20.936192Z","custom_routes_propagation_enabled":false,"id":"cfb5c6b8-9595-407f-9f89-8dc0e1e7cde8","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9921766f-5118-4898-bcaf-921be820cd27","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-07T07:38:20.936192Z"}]}' headers: Content-Length: - - "2204" + - "5287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04d890e7-9cf0-4506-a017-7c0d6796ac59 + - a2fbfad6-b6ff-4e85-a175-32281c35ea1f status: 200 OK code: 200 - duration: 87.240625ms + duration: 189.003708ms - id: 1 request: proto: HTTP/1.1 @@ -65,8 +65,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/8feba4f5-79f9-42cd-b5ce-3ed8c510569e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/086a5171-f7ab-4667-a231-840a81203f19 method: GET response: proto: HTTP/2.0 @@ -74,20 +74,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 405 uncompressed: false - body: '{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":3,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' + body: '{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":11,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' headers: Content-Length: - - "372" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:47 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -95,10 +95,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9dc29f16-6e73-4349-87f7-373f85dabfc2 + - d93c7267-40e5-436d-b6fa-d75c513889c7 status: 200 OK code: 200 - duration: 34.12925ms + duration: 31.361458ms - id: 2 request: proto: HTTP/1.1 @@ -114,7 +114,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?is_default=true&order_by=created_at_asc method: GET response: @@ -123,20 +123,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 5287 uncompressed: false - body: '{"total_count":6,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":3,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2023-11-02T12:32:36.753408Z","id":"d8431f76-a865-4d35-8a23-ee9ccf185275","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"50ab77d5-56bd-4981-a118-4e0fa5309b59","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-11-02T12:32:36.753408Z"},{"created_at":"2024-10-10T15:51:52.742925Z","id":"fc05c4f6-418f-4e88-9dc5-b424b1dd6a53","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"f5375b18-7efc-4416-ab13-c42af955602c","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-10T15:51:52.742925Z"},{"created_at":"2024-10-29T13:41:00.148384Z","id":"c62d8767-be77-4712-80b8-3d0ddf5a1055","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"18db5abf-6ea1-4d9d-b12c-5f2bb16afe97","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T13:41:00.148384Z"},{"created_at":"2024-10-29T15:03:02.329301Z","id":"ef089b99-cfb2-4a9f-93fa-aea0fa98ef71","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"c567f266-af4f-4da0-a35b-98c34086f991","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:03:02.329301Z"},{"created_at":"2024-10-29T15:13:11.792660Z","id":"a86b0009-d1d8-4661-88cf-874839eddde8","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:13:11.792660Z"}]}' + body: '{"total_count":13,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":11,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2024-08-02T15:53:09.243138Z","custom_routes_propagation_enabled":false,"id":"7c294b8c-5966-478c-a1c9-4e9b09584470","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e9b20612-74e7-445f-943a-42ff6c18a0fc","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-08-02T15:53:09.243138Z"},{"created_at":"2024-11-08T09:50:43.866237Z","custom_routes_propagation_enabled":false,"id":"7334fddf-ffe5-4e63-a67a-88f4d1cb55c3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"61aa24b8-bd03-4f01-9310-9da4fbcb9607","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T09:50:43.866237Z"},{"created_at":"2024-11-08T10:35:22.036820Z","custom_routes_propagation_enabled":false,"id":"ba65c7b0-c7cf-4f9e-9f82-d65abb4fd850","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"4cffcc2c-894e-4637-ac1f-c078ac8a0256","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:35:22.036820Z"},{"created_at":"2024-11-08T10:38:20.025449Z","custom_routes_propagation_enabled":false,"id":"4a22095c-0f22-49f7-8763-b2b6039b2566","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"da53e9b1-b39d-4a47-940d-6cc63ed87f03","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:38:20.025449Z"},{"created_at":"2024-11-08T10:40:56.675948Z","custom_routes_propagation_enabled":false,"id":"9e441afa-47f5-45b6-9f85-44c0dfe4a542","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"f88b54a0-1328-48b6-b78e-9a29dd9747a0","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:40:56.675948Z"},{"created_at":"2024-11-08T10:47:40.036628Z","custom_routes_propagation_enabled":false,"id":"c162ef44-7e13-4e53-8d16-2527b2eb2d9a","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"2e7b4cf7-4aa9-498c-9123-6dd93838d950","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:47:40.036628Z"},{"created_at":"2025-04-04T14:38:11.433881Z","custom_routes_propagation_enabled":false,"id":"2ba13540-3b01-45eb-9e64-ee3edb028ce9","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e4135d70-7aac-41f6-a508-9aea70d95bc4","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:38:11.433881Z"},{"created_at":"2025-04-04T14:45:48.467697Z","custom_routes_propagation_enabled":false,"id":"2ea93a70-a8a8-474e-b5cb-e74d432fc6b3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"84adc563-5f46-4c4c-b482-331cbdbbb896","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:45:48.467697Z"},{"created_at":"2025-04-04T14:46:53.952815Z","custom_routes_propagation_enabled":false,"id":"5a77a8f0-a89b-4e26-af06-cc0601e9c52c","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"db10ca2f-6470-4bf5-a90f-41d254bfe7e7","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:46:53.952815Z"},{"created_at":"2025-04-06T19:30:02.013706Z","custom_routes_propagation_enabled":false,"id":"62f55f26-9c58-4fcf-8db8-1201ce42ecd3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9ff66e03-20cb-4dba-bba4-8831b441c362","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:30:02.013706Z"},{"created_at":"2025-04-06T19:32:02.751762Z","custom_routes_propagation_enabled":false,"id":"bb39c2ca-2e11-49dd-90e5-320b7d37f1eb","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"fe3df59d-cf57-47cd-a46d-619c8846e305","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:32:02.751762Z"},{"created_at":"2025-04-07T07:38:20.936192Z","custom_routes_propagation_enabled":false,"id":"cfb5c6b8-9595-407f-9f89-8dc0e1e7cde8","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9921766f-5118-4898-bcaf-921be820cd27","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-07T07:38:20.936192Z"}]}' headers: Content-Length: - - "2270" + - "5287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -144,10 +144,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f4f19c9-17e0-4c07-a66c-b122ca47bb15 + - b09b0444-1a58-4869-9d86-191cb8f04047 status: 200 OK code: 200 - duration: 75.673041ms + duration: 55.495709ms - id: 3 request: proto: HTTP/1.1 @@ -163,8 +163,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/8feba4f5-79f9-42cd-b5ce-3ed8c510569e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/086a5171-f7ab-4667-a231-840a81203f19 method: GET response: proto: HTTP/2.0 @@ -172,20 +172,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 405 uncompressed: false - body: '{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' + body: '{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":11,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' headers: Content-Length: - - "362" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -193,10 +193,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8987ea17-7056-465e-92d9-8550f51b2ce3 + - 179a3635-fca9-4d03-9837-cd13002e76f6 status: 200 OK code: 200 - duration: 29.979708ms + duration: 24.887167ms - id: 4 request: proto: HTTP/1.1 @@ -212,7 +212,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?is_default=true&order_by=created_at_asc method: GET response: @@ -221,20 +221,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2204 + content_length: 5287 uncompressed: false - body: '{"total_count":6,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2023-11-02T12:32:36.753408Z","id":"d8431f76-a865-4d35-8a23-ee9ccf185275","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"50ab77d5-56bd-4981-a118-4e0fa5309b59","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-11-02T12:32:36.753408Z"},{"created_at":"2024-10-10T15:51:52.742925Z","id":"fc05c4f6-418f-4e88-9dc5-b424b1dd6a53","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"f5375b18-7efc-4416-ab13-c42af955602c","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-10T15:51:52.742925Z"},{"created_at":"2024-10-29T13:41:00.148384Z","id":"c62d8767-be77-4712-80b8-3d0ddf5a1055","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"18db5abf-6ea1-4d9d-b12c-5f2bb16afe97","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T13:41:00.148384Z"},{"created_at":"2024-10-29T15:03:02.329301Z","id":"ef089b99-cfb2-4a9f-93fa-aea0fa98ef71","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"c567f266-af4f-4da0-a35b-98c34086f991","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:03:02.329301Z"},{"created_at":"2024-10-29T15:13:11.792660Z","id":"a86b0009-d1d8-4661-88cf-874839eddde8","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:13:11.792660Z"}]}' + body: '{"total_count":13,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2024-08-02T15:53:09.243138Z","custom_routes_propagation_enabled":false,"id":"7c294b8c-5966-478c-a1c9-4e9b09584470","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e9b20612-74e7-445f-943a-42ff6c18a0fc","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-08-02T15:53:09.243138Z"},{"created_at":"2024-11-08T09:50:43.866237Z","custom_routes_propagation_enabled":false,"id":"7334fddf-ffe5-4e63-a67a-88f4d1cb55c3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"61aa24b8-bd03-4f01-9310-9da4fbcb9607","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T09:50:43.866237Z"},{"created_at":"2024-11-08T10:35:22.036820Z","custom_routes_propagation_enabled":false,"id":"ba65c7b0-c7cf-4f9e-9f82-d65abb4fd850","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"4cffcc2c-894e-4637-ac1f-c078ac8a0256","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:35:22.036820Z"},{"created_at":"2024-11-08T10:38:20.025449Z","custom_routes_propagation_enabled":false,"id":"4a22095c-0f22-49f7-8763-b2b6039b2566","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"da53e9b1-b39d-4a47-940d-6cc63ed87f03","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:38:20.025449Z"},{"created_at":"2024-11-08T10:40:56.675948Z","custom_routes_propagation_enabled":false,"id":"9e441afa-47f5-45b6-9f85-44c0dfe4a542","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"f88b54a0-1328-48b6-b78e-9a29dd9747a0","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:40:56.675948Z"},{"created_at":"2024-11-08T10:47:40.036628Z","custom_routes_propagation_enabled":false,"id":"c162ef44-7e13-4e53-8d16-2527b2eb2d9a","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"2e7b4cf7-4aa9-498c-9123-6dd93838d950","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:47:40.036628Z"},{"created_at":"2025-04-04T14:38:11.433881Z","custom_routes_propagation_enabled":false,"id":"2ba13540-3b01-45eb-9e64-ee3edb028ce9","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e4135d70-7aac-41f6-a508-9aea70d95bc4","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:38:11.433881Z"},{"created_at":"2025-04-04T14:45:48.467697Z","custom_routes_propagation_enabled":false,"id":"2ea93a70-a8a8-474e-b5cb-e74d432fc6b3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"84adc563-5f46-4c4c-b482-331cbdbbb896","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:45:48.467697Z"},{"created_at":"2025-04-04T14:46:53.952815Z","custom_routes_propagation_enabled":false,"id":"5a77a8f0-a89b-4e26-af06-cc0601e9c52c","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"db10ca2f-6470-4bf5-a90f-41d254bfe7e7","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:46:53.952815Z"},{"created_at":"2025-04-06T19:30:02.013706Z","custom_routes_propagation_enabled":false,"id":"62f55f26-9c58-4fcf-8db8-1201ce42ecd3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9ff66e03-20cb-4dba-bba4-8831b441c362","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:30:02.013706Z"},{"created_at":"2025-04-06T19:32:02.751762Z","custom_routes_propagation_enabled":false,"id":"bb39c2ca-2e11-49dd-90e5-320b7d37f1eb","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"fe3df59d-cf57-47cd-a46d-619c8846e305","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:32:02.751762Z"},{"created_at":"2025-04-07T07:38:20.936192Z","custom_routes_propagation_enabled":false,"id":"cfb5c6b8-9595-407f-9f89-8dc0e1e7cde8","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9921766f-5118-4898-bcaf-921be820cd27","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-07T07:38:20.936192Z"}]}' headers: Content-Length: - - "2204" + - "5287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1096672c-876d-4fb3-b0b3-a686f93879e4 + - a2d3f3f8-fac7-4cd2-9e69-1b3dc345f1d9 status: 200 OK code: 200 - duration: 71.050041ms + duration: 74.412958ms - id: 5 request: proto: HTTP/1.1 @@ -261,8 +261,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/8feba4f5-79f9-42cd-b5ce-3ed8c510569e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/086a5171-f7ab-4667-a231-840a81203f19 method: GET response: proto: HTTP/2.0 @@ -270,20 +270,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 405 uncompressed: false - body: '{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' + body: '{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' headers: Content-Length: - - "372" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,10 +291,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46866b46-2c21-46bd-a2a3-16bc7c9230a3 + - a76ceb3a-5336-4b44-b49f-f5e9b4c678bb status: 200 OK code: 200 - duration: 38.114375ms + duration: 26.375417ms - id: 6 request: proto: HTTP/1.1 @@ -310,7 +310,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?is_default=true&order_by=created_at_asc method: GET response: @@ -319,20 +319,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2204 + content_length: 5287 uncompressed: false - body: '{"total_count":6,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2023-11-02T12:32:36.753408Z","id":"d8431f76-a865-4d35-8a23-ee9ccf185275","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"50ab77d5-56bd-4981-a118-4e0fa5309b59","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-11-02T12:32:36.753408Z"},{"created_at":"2024-10-10T15:51:52.742925Z","id":"fc05c4f6-418f-4e88-9dc5-b424b1dd6a53","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"f5375b18-7efc-4416-ab13-c42af955602c","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-10T15:51:52.742925Z"},{"created_at":"2024-10-29T13:41:00.148384Z","id":"c62d8767-be77-4712-80b8-3d0ddf5a1055","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"18db5abf-6ea1-4d9d-b12c-5f2bb16afe97","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T13:41:00.148384Z"},{"created_at":"2024-10-29T15:03:02.329301Z","id":"ef089b99-cfb2-4a9f-93fa-aea0fa98ef71","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"c567f266-af4f-4da0-a35b-98c34086f991","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:03:02.329301Z"},{"created_at":"2024-10-29T15:13:11.792660Z","id":"a86b0009-d1d8-4661-88cf-874839eddde8","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:13:11.792660Z"}]}' + body: '{"total_count":13,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2024-08-02T15:53:09.243138Z","custom_routes_propagation_enabled":false,"id":"7c294b8c-5966-478c-a1c9-4e9b09584470","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e9b20612-74e7-445f-943a-42ff6c18a0fc","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-08-02T15:53:09.243138Z"},{"created_at":"2024-11-08T09:50:43.866237Z","custom_routes_propagation_enabled":false,"id":"7334fddf-ffe5-4e63-a67a-88f4d1cb55c3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"61aa24b8-bd03-4f01-9310-9da4fbcb9607","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T09:50:43.866237Z"},{"created_at":"2024-11-08T10:35:22.036820Z","custom_routes_propagation_enabled":false,"id":"ba65c7b0-c7cf-4f9e-9f82-d65abb4fd850","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"4cffcc2c-894e-4637-ac1f-c078ac8a0256","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:35:22.036820Z"},{"created_at":"2024-11-08T10:38:20.025449Z","custom_routes_propagation_enabled":false,"id":"4a22095c-0f22-49f7-8763-b2b6039b2566","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"da53e9b1-b39d-4a47-940d-6cc63ed87f03","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:38:20.025449Z"},{"created_at":"2024-11-08T10:40:56.675948Z","custom_routes_propagation_enabled":false,"id":"9e441afa-47f5-45b6-9f85-44c0dfe4a542","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"f88b54a0-1328-48b6-b78e-9a29dd9747a0","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:40:56.675948Z"},{"created_at":"2024-11-08T10:47:40.036628Z","custom_routes_propagation_enabled":false,"id":"c162ef44-7e13-4e53-8d16-2527b2eb2d9a","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"2e7b4cf7-4aa9-498c-9123-6dd93838d950","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:47:40.036628Z"},{"created_at":"2025-04-04T14:38:11.433881Z","custom_routes_propagation_enabled":false,"id":"2ba13540-3b01-45eb-9e64-ee3edb028ce9","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e4135d70-7aac-41f6-a508-9aea70d95bc4","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:38:11.433881Z"},{"created_at":"2025-04-04T14:45:48.467697Z","custom_routes_propagation_enabled":false,"id":"2ea93a70-a8a8-474e-b5cb-e74d432fc6b3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"84adc563-5f46-4c4c-b482-331cbdbbb896","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:45:48.467697Z"},{"created_at":"2025-04-04T14:46:53.952815Z","custom_routes_propagation_enabled":false,"id":"5a77a8f0-a89b-4e26-af06-cc0601e9c52c","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"db10ca2f-6470-4bf5-a90f-41d254bfe7e7","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:46:53.952815Z"},{"created_at":"2025-04-06T19:30:02.013706Z","custom_routes_propagation_enabled":false,"id":"62f55f26-9c58-4fcf-8db8-1201ce42ecd3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9ff66e03-20cb-4dba-bba4-8831b441c362","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:30:02.013706Z"},{"created_at":"2025-04-06T19:32:02.751762Z","custom_routes_propagation_enabled":false,"id":"bb39c2ca-2e11-49dd-90e5-320b7d37f1eb","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"fe3df59d-cf57-47cd-a46d-619c8846e305","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:32:02.751762Z"},{"created_at":"2025-04-07T07:38:20.936192Z","custom_routes_propagation_enabled":false,"id":"cfb5c6b8-9595-407f-9f89-8dc0e1e7cde8","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9921766f-5118-4898-bcaf-921be820cd27","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-07T07:38:20.936192Z"}]}' headers: Content-Length: - - "2204" + - "5287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -340,10 +340,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4a58b1f-599d-4316-944b-929120084405 + - 9a6787b9-49d6-40ec-bfe1-cd7c0c05d35c status: 200 OK code: 200 - duration: 67.416084ms + duration: 58.564375ms - id: 7 request: proto: HTTP/1.1 @@ -359,8 +359,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/8feba4f5-79f9-42cd-b5ce-3ed8c510569e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/086a5171-f7ab-4667-a231-840a81203f19 method: GET response: proto: HTTP/2.0 @@ -368,20 +368,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 405 uncompressed: false - body: '{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' + body: '{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' headers: Content-Length: - - "362" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -389,10 +389,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0659a9ca-81b2-419f-99cd-6564123c2d2a + - 123f7b5f-259c-49ae-b87e-cd9e33010c4b status: 200 OK code: 200 - duration: 40.14275ms + duration: 30.322292ms - id: 8 request: proto: HTTP/1.1 @@ -408,7 +408,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs?is_default=true&order_by=created_at_asc method: GET response: @@ -417,20 +417,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2270 + content_length: 5287 uncompressed: false - body: '{"total_count":6,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2023-11-02T12:32:36.753408Z","id":"d8431f76-a865-4d35-8a23-ee9ccf185275","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"50ab77d5-56bd-4981-a118-4e0fa5309b59","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-11-02T12:32:36.753408Z"},{"created_at":"2024-10-10T15:51:52.742925Z","id":"fc05c4f6-418f-4e88-9dc5-b424b1dd6a53","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"f5375b18-7efc-4416-ab13-c42af955602c","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-10T15:51:52.742925Z"},{"created_at":"2024-10-29T13:41:00.148384Z","id":"c62d8767-be77-4712-80b8-3d0ddf5a1055","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"18db5abf-6ea1-4d9d-b12c-5f2bb16afe97","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T13:41:00.148384Z"},{"created_at":"2024-10-29T15:03:02.329301Z","id":"ef089b99-cfb2-4a9f-93fa-aea0fa98ef71","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"c567f266-af4f-4da0-a35b-98c34086f991","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:03:02.329301Z"},{"created_at":"2024-10-29T15:13:11.792660Z","id":"a86b0009-d1d8-4661-88cf-874839eddde8","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"fe479fbe-6cae-44c5-bb7a-7fc9f04acad5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-10-29T15:13:11.792660Z"}]}' + body: '{"total_count":13,"vpcs":[{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"},{"created_at":"2024-08-02T15:53:09.243138Z","custom_routes_propagation_enabled":false,"id":"7c294b8c-5966-478c-a1c9-4e9b09584470","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e9b20612-74e7-445f-943a-42ff6c18a0fc","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-08-02T15:53:09.243138Z"},{"created_at":"2024-11-08T09:50:43.866237Z","custom_routes_propagation_enabled":false,"id":"7334fddf-ffe5-4e63-a67a-88f4d1cb55c3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"61aa24b8-bd03-4f01-9310-9da4fbcb9607","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T09:50:43.866237Z"},{"created_at":"2024-11-08T10:35:22.036820Z","custom_routes_propagation_enabled":false,"id":"ba65c7b0-c7cf-4f9e-9f82-d65abb4fd850","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"4cffcc2c-894e-4637-ac1f-c078ac8a0256","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:35:22.036820Z"},{"created_at":"2024-11-08T10:38:20.025449Z","custom_routes_propagation_enabled":false,"id":"4a22095c-0f22-49f7-8763-b2b6039b2566","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"da53e9b1-b39d-4a47-940d-6cc63ed87f03","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:38:20.025449Z"},{"created_at":"2024-11-08T10:40:56.675948Z","custom_routes_propagation_enabled":false,"id":"9e441afa-47f5-45b6-9f85-44c0dfe4a542","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"f88b54a0-1328-48b6-b78e-9a29dd9747a0","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:40:56.675948Z"},{"created_at":"2024-11-08T10:47:40.036628Z","custom_routes_propagation_enabled":false,"id":"c162ef44-7e13-4e53-8d16-2527b2eb2d9a","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"2e7b4cf7-4aa9-498c-9123-6dd93838d950","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2024-11-08T10:47:40.036628Z"},{"created_at":"2025-04-04T14:38:11.433881Z","custom_routes_propagation_enabled":false,"id":"2ba13540-3b01-45eb-9e64-ee3edb028ce9","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"e4135d70-7aac-41f6-a508-9aea70d95bc4","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:38:11.433881Z"},{"created_at":"2025-04-04T14:45:48.467697Z","custom_routes_propagation_enabled":false,"id":"2ea93a70-a8a8-474e-b5cb-e74d432fc6b3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"84adc563-5f46-4c4c-b482-331cbdbbb896","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:45:48.467697Z"},{"created_at":"2025-04-04T14:46:53.952815Z","custom_routes_propagation_enabled":false,"id":"5a77a8f0-a89b-4e26-af06-cc0601e9c52c","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"db10ca2f-6470-4bf5-a90f-41d254bfe7e7","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-04T14:46:53.952815Z"},{"created_at":"2025-04-06T19:30:02.013706Z","custom_routes_propagation_enabled":false,"id":"62f55f26-9c58-4fcf-8db8-1201ce42ecd3","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9ff66e03-20cb-4dba-bba4-8831b441c362","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:30:02.013706Z"},{"created_at":"2025-04-06T19:32:02.751762Z","custom_routes_propagation_enabled":false,"id":"bb39c2ca-2e11-49dd-90e5-320b7d37f1eb","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"fe3df59d-cf57-47cd-a46d-619c8846e305","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-06T19:32:02.751762Z"},{"created_at":"2025-04-07T07:38:20.936192Z","custom_routes_propagation_enabled":false,"id":"cfb5c6b8-9595-407f-9f89-8dc0e1e7cde8","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"9921766f-5118-4898-bcaf-921be820cd27","region":"fr-par","routing_enabled":true,"tags":["default"],"updated_at":"2025-04-07T07:38:20.936192Z"}]}' headers: Content-Length: - - "2270" + - "5287" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -438,10 +438,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54e13eb7-494c-41db-9945-0b5ba1f8bd14 + - 8a8b1661-b336-4fcf-82ef-95927bea8302 status: 200 OK code: 200 - duration: 81.904208ms + duration: 58.634542ms - id: 9 request: proto: HTTP/1.1 @@ -457,8 +457,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/8feba4f5-79f9-42cd-b5ce-3ed8c510569e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/086a5171-f7ab-4667-a231-840a81203f19 method: GET response: proto: HTTP/2.0 @@ -466,20 +466,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 372 + content_length: 405 uncompressed: false - body: '{"created_at":"2023-04-04T09:04:28.711230Z","id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e","is_default":true,"name":"default","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":2,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' + body: '{"created_at":"2023-04-04T09:04:28.711230Z","custom_routes_propagation_enabled":false,"id":"086a5171-f7ab-4667-a231-840a81203f19","is_default":true,"name":"default","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":12,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","routing_enabled":false,"tags":["default"],"updated_at":"2023-04-04T09:04:28.711230Z"}' headers: Content-Length: - - "372" + - "405" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -487,7 +487,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 179222e2-8fa8-48e1-a1bc-2167a49548c5 + - cf0ccdf9-39f1-4df0-8584-c21e2deadc13 status: 200 OK code: 200 - duration: 34.284375ms + duration: 26.29675ms diff --git a/internal/services/vpc/testdata/data-source-vpc-private-network-basic.cassette.yaml b/internal/services/vpc/testdata/data-source-vpc-private-network-basic.cassette.yaml index a22d65e693..e2513d69cb 100644 --- a/internal/services/vpc/testdata/data-source-vpc-private-network-basic.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-vpc-private-network-basic.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 136 + content_length: 178 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:50 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03b6a4a6-35a4-4934-940d-44b6cc678948 + - 3059c9d5-0bfc-4c4d-8488-0e7f8510d409 status: 200 OK code: 200 - duration: 768.100291ms + duration: 627.24925ms - 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/private-networks/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:50 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 672da41d-ba7f-4751-976c-922ce8969b02 + - 5e074d22-623d-4e49-b481-e0c85e2a8d6b status: 200 OK code: 200 - duration: 43.392041ms + duration: 28.469042ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:51 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df3391c8-c32a-4220-9502-c8bc02c8d5e8 + - 8cccf8cb-8f2e-485c-9a47-806a62e35dd5 status: 200 OK code: 200 - duration: 36.492541ms + duration: 29.972125ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 975de3b5-4cda-44e7-8df3-6e68c937ab73 + - aca481db-dd0c-44ae-b263-b5d266552f73 status: 200 OK code: 200 - duration: 40.938833ms + duration: 41.714084ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -223,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +244,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78dda601-e753-468a-9e12-697935894360 + - 22b92099-fc28-4c81-84ff-73693156b4ec status: 200 OK code: 200 - duration: 27.781791ms + duration: 33.089917ms - id: 5 request: proto: HTTP/1.1 @@ -263,7 +263,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayDataSourceVPCPrivateNetwork_Basic&order_by=created_at_asc method: GET response: @@ -272,20 +272,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1133 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"total_count":1}' headers: Content-Length: - - "1090" + - "1133" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ab24d440-aef7-4af7-a6eb-0b3840fdc8c3 + - a000cdf7-f201-45c6-95b5-ee812bb7998c status: 200 OK code: 200 - duration: 105.780125ms + duration: 56.125084ms - id: 6 request: proto: HTTP/1.1 @@ -312,8 +312,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -321,20 +321,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,10 +342,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76c2f469-5f05-4e50-aa53-55d5d1b4a618 + - 1d5548a2-1b9e-4b1f-a5de-dcf6e5a8e4c5 status: 200 OK code: 200 - duration: 34.297917ms + duration: 30.585209ms - id: 7 request: proto: HTTP/1.1 @@ -361,8 +361,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -370,20 +370,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,10 +391,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0a57ce7-7f9d-4788-9f91-4a4c636fd907 + - 64026dbc-27df-45ae-bdd0-3e354494c5f4 status: 200 OK code: 200 - duration: 37.966708ms + duration: 30.654292ms - id: 8 request: proto: HTTP/1.1 @@ -410,7 +410,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayDataSourceVPCPrivateNetwork_Basic&order_by=created_at_asc method: GET response: @@ -419,20 +419,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1133 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"total_count":1}' headers: Content-Length: - - "1090" + - "1133" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,10 +440,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5007ce32-8521-45d2-8268-2a9c589d4f56 + - fc6319ef-23db-497b-a0a7-1bbb1c0e806d status: 200 OK code: 200 - duration: 101.446042ms + duration: 55.652459ms - id: 9 request: proto: HTTP/1.1 @@ -459,8 +459,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -468,20 +468,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:52 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,10 +489,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dedd2142-53ba-4573-b11a-1190dc26be3c + - 9578d16f-1e26-4c74-85a7-3fa4535607b3 status: 200 OK code: 200 - duration: 35.066958ms + duration: 30.119167ms - id: 10 request: proto: HTTP/1.1 @@ -508,8 +508,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -517,20 +517,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:53 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,10 +538,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1533d4ad-e368-499c-8b0d-72f53faa6f84 + - e6e27bc9-839f-46cb-b740-04ab2a0a3c29 status: 200 OK code: 200 - duration: 24.542833ms + duration: 28.1095ms - id: 11 request: proto: HTTP/1.1 @@ -557,8 +557,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -566,20 +566,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:53 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -587,10 +587,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 551854f4-cb6c-45c9-92fa-3d4e0e74938f + - 51d91a76-16f7-4f2f-9510-768f924abc77 status: 200 OK code: 200 - duration: 39.979959ms + duration: 24.944625ms - id: 12 request: proto: HTTP/1.1 @@ -606,7 +606,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayDataSourceVPCPrivateNetwork_Basic&order_by=created_at_asc method: GET response: @@ -615,20 +615,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1133 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"total_count":1}' headers: Content-Length: - - "1090" + - "1133" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:53 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -636,10 +636,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a8c3c41-04bd-44a1-a719-e3d11c47fad3 + - 69049600-3026-4004-ada2-81475e292626 status: 200 OK code: 200 - duration: 120.467083ms + duration: 56.944292ms - id: 13 request: proto: HTTP/1.1 @@ -655,8 +655,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -664,20 +664,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:53 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -685,10 +685,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b90c2ba-7c15-4a4f-a359-7c03ce90a25f + - ce296224-0d58-4d69-98a7-3cd4e10ee880 status: 200 OK code: 200 - duration: 154.172833ms + duration: 30.333125ms - id: 14 request: proto: HTTP/1.1 @@ -704,8 +704,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -713,20 +713,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -734,10 +734,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 185fbbfd-7123-4e46-9548-34a46711690a + - 3ddd6c50-5c72-4fb2-839d-7d6295eab8a8 status: 200 OK code: 200 - duration: 33.384292ms + duration: 29.352459ms - id: 15 request: proto: HTTP/1.1 @@ -753,8 +753,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -762,20 +762,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,10 +783,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3961992c-a74d-4ef8-b6f2-322204455eab + - 560e8497-fdc4-4553-879c-332abd6e7f37 status: 200 OK code: 200 - duration: 31.553917ms + duration: 33.60475ms - id: 16 request: proto: HTTP/1.1 @@ -802,7 +802,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayDataSourceVPCPrivateNetwork_Basic&order_by=created_at_asc method: GET response: @@ -811,20 +811,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1133 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"total_count":1}' headers: Content-Length: - - "1090" + - "1133" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -832,10 +832,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4097645-7fe8-4d6e-b133-bbee8d7d1f4e + - f11db88c-4910-4b51-b0eb-9ada23564233 status: 200 OK code: 200 - duration: 108.08275ms + duration: 53.815209ms - id: 17 request: proto: HTTP/1.1 @@ -851,8 +851,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -860,20 +860,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -881,10 +881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94a9b2f8-34a7-4312-b94d-840fcac86726 + - 0b41d367-016e-4d3e-a6ec-61130a753ded status: 200 OK code: 200 - duration: 32.435667ms + duration: 25.091375ms - id: 18 request: proto: HTTP/1.1 @@ -900,8 +900,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -909,20 +909,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -930,10 +930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90a1a49f-9f8e-4bad-b310-1f6aa710e9d3 + - 12901fc3-8fc6-48e5-a347-d5ff12bc8f46 status: 200 OK code: 200 - duration: 34.987875ms + duration: 33.787917ms - id: 19 request: proto: HTTP/1.1 @@ -949,7 +949,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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayDataSourceVPCPrivateNetwork_Basic&order_by=created_at_asc method: GET response: @@ -958,20 +958,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1090 + content_length: 1133 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"total_count":1}' headers: Content-Length: - - "1090" + - "1133" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -979,10 +979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 44409fdd-9c02-4073-ba40-b71cbdf1dfb7 + - e8d471e0-cb14-4856-8b60-33d135c71343 status: 200 OK code: 200 - duration: 117.974959ms + duration: 56.388708ms - id: 20 request: proto: HTTP/1.1 @@ -998,8 +998,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -1007,20 +1007,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1051 + content_length: 1094 uncompressed: false - body: '{"created_at":"2025-01-28T10:27:50.216463Z","dhcp_enabled":true,"id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:27:50.216463Z","id":"27949005-a5e8-43c2-b8c3-f719162dbc3c","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:27:50.216463Z","id":"1fcf6f9a-11c4-40b3-a3d7-0259b8e82010","private_network_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:380b::/64","updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:27:50.216463Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:21:48.128564Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","name":"TestAccScalewayDataSourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.128564Z","id":"f7871569-7e6a-41eb-be8c-7d377a4faf34","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:21:48.128564Z","id":"3e031658-963a-4a32-93a6-939fba3c40c2","private_network_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c949::/64","updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:21:48.128564Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1051" + - "1094" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:54 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1028,10 +1028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9843c23e-bdbd-442e-b4c0-98960222717f + - db1bdfef-e4be-46d1-b771-dc7797e51453 status: 200 OK code: 200 - duration: 28.553042ms + duration: 31.079459ms - id: 21 request: proto: HTTP/1.1 @@ -1047,8 +1047,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: DELETE response: proto: HTTP/2.0 @@ -1065,9 +1065,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:56 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1075,10 +1075,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99babfea-54e2-468f-a05a-d1a85c0a90cb + - 9c3256c1-e852-4166-9658-8ccdc7b4fc00 status: 204 No Content code: 204 - duration: 1.530853583s + duration: 2.600430708s - id: 22 request: proto: HTTP/1.1 @@ -1094,8 +1094,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -1105,7 +1105,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","type":"not_found"}' headers: Content-Length: - "136" @@ -1114,9 +1114,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:57 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1124,10 +1124,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5909d667-c297-4dd2-8f5c-1daa9ec28fce + - 9e477b06-f4bf-4204-83a1-ecaf25a092ac status: 404 Not Found code: 404 - duration: 29.235625ms + duration: 31.335541ms - id: 23 request: proto: HTTP/1.1 @@ -1143,8 +1143,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -1154,7 +1154,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","type":"not_found"}' headers: Content-Length: - "136" @@ -1163,9 +1163,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:57 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1173,10 +1173,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0e83a8c-a0ea-4df1-a644-9ea6859f47bc + - 0d50670f-8669-4f04-8a84-a8fc1cb9b4d4 status: 404 Not Found code: 404 - duration: 22.883958ms + duration: 22.361875ms - id: 24 request: proto: HTTP/1.1 @@ -1192,8 +1192,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/7806283d-08e3-460d-93a8-e5a5ed4e98e9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e920fd51-0361-4bd8-8a4e-37af8156bf57 method: GET response: proto: HTTP/2.0 @@ -1203,7 +1203,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"7806283d-08e3-460d-93a8-e5a5ed4e98e9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"e920fd51-0361-4bd8-8a4e-37af8156bf57","type":"not_found"}' headers: Content-Length: - "136" @@ -1212,9 +1212,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:27:57 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1222,7 +1222,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edcd43c0-ae40-4486-96e8-1b6b7cbaa4fa + - 97f3475c-d6ce-443f-a414-d3514f7cb938 status: 404 Not Found code: 404 - duration: 38.119542ms + duration: 29.1945ms diff --git a/internal/services/vpc/testdata/data-source-vpc-private-network-vpc-id.cassette.yaml b/internal/services/vpc/testdata/data-source-vpc-private-network-vpc-id.cassette.yaml index 595e993647..8026b2e0f0 100644 --- a/internal/services/vpc/testdata/data-source-vpc-private-network-vpc-id.cassette.yaml +++ b/internal/services/vpc/testdata/data-source-vpc-private-network-vpc-id.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayResourceVPC_Basic02","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"TestAccScalewayResourceVPC_Basic02","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.4; darwin; arm64) 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: 390 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.899057Z","id":"ba32620d-0617-4566-b90a-6272951bb0a5","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-28T10:05:15.899057Z"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":false,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.128676Z"}' headers: Content-Length: - - "390" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,29 +48,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ae21beb-3a8b-40e1-a6b0-1eabe50da4ff + - 03f71ec0-d687-4078-9819-08450cff072d status: 200 OK code: 200 - duration: 92.662458ms + duration: 74.556417ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 130 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayResourceVPC_Basic01","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.915343Z","id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-28T10:05:15.915343Z"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":true,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.173392Z"}' headers: Content-Length: - - "380" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bad3dfa-03d1-4d88-8eb5-1f7632b8cfeb + - 07bd1cc5-92bd-44f8-aaec-e1517974f985 status: 200 OK code: 200 - duration: 103.649958ms + duration: 34.932541ms - id: 2 request: proto: HTTP/1.1 @@ -118,8 +118,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/ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -127,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.899057Z","id":"ba32620d-0617-4566-b90a-6272951bb0a5","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-28T10:05:15.899057Z"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":true,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.173392Z"}' headers: Content-Length: - - "380" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0743677-f6ba-4553-b90e-2a268c6f822b + - b7b4977a-bb75-4682-a3e9-4afe41194b9a status: 200 OK code: 200 - duration: 36.943125ms + duration: 31.128209ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 130 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayResourceVPC_Basic01","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 - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2006808a-bde0-41f4-9aed-dc3a6b198c5f - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 422 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.915343Z","id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-28T10:05:15.915343Z"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":false,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.211631Z"}' headers: Content-Length: - - "390" + - "422" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,29 +199,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b17b761d-dc2b-4ea0-9cd4-2486dbcd75ad + - 48bf2fa2-5fcf-469e-a590-c336a23eb14a status: 200 OK code: 200 - duration: 34.94575ms + duration: 152.925625ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 182 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -227,20 +229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":true,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.250231Z"}' headers: Content-Length: - - "1072" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d397ec7c-f9d9-4c07-b2d2-d5b51c1fa870 + - d3ee8dea-564d-4955-b22d-ccbb52371577 status: 200 OK code: 200 - duration: 866.022584ms + duration: 29.886041ms - id: 5 request: proto: HTTP/1.1 @@ -267,8 +269,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -276,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":true,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.250231Z"}' headers: Content-Length: - - "1072" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,28 +299,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3954645d-fcb2-4d76-87df-3048e634a3ef + - 26feab7e-3e8b-445c-a98a-8fd082e88e1a status: 200 OK code: 200 - duration: 27.975375ms + duration: 24.679292ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 182 + content_length: 224 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","default_route_propagation_enabled":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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -327,20 +329,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1050" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -348,10 +350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11d8133c-1992-42f1-8e04-7f718c9c5c9a + - eae95093-6cda-4ac5-a5fb-fedd39034500 status: 200 OK code: 200 - duration: 1.033452667s + duration: 545.021167ms - id: 7 request: proto: HTTP/1.1 @@ -367,8 +369,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -376,20 +378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1050" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -397,48 +399,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10ea0d6e-bd9f-4084-8eea-73216a7260c5 + - ba7ace3f-c635-4483-905b-d2c5af18b03a status: 200 OK code: 200 - duration: 34.5165ms + duration: 34.930459ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 224 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","default_route_propagation_enabled":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 - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ba32620d-0617-4566-b90a-6272951bb0a5 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.899057Z","id":"ba32620d-0617-4566-b90a-6272951bb0a5","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-28T10:05:15.899057Z"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "380" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -446,10 +450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e906a84-4a89-4447-aec4-719bc08243e2 + - 82eb17a8-bd1f-4613-b11c-6066d5424dee status: 200 OK code: 200 - duration: 90.870792ms + duration: 595.979958ms - id: 9 request: proto: HTTP/1.1 @@ -465,8 +469,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/2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -474,20 +478,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.915343Z","id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-28T10:05:15.915343Z"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "390" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:48 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b59a51c-c556-48b7-a9b9-fc34bbae32bf + - 696ad075-0872-4305-8bf7-4e5fce22ca2d status: 200 OK code: 200 - duration: 90.299792ms + duration: 26.928334ms - id: 10 request: proto: HTTP/1.1 @@ -514,8 +518,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -523,20 +527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":true,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.250231Z"}' headers: Content-Length: - - "1050" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,10 +548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84f77bbf-47b7-47f5-ae1f-2b124fb4b0c3 + - d9103816-ea7c-4fe4-84a0-43ba10cc7115 status: 200 OK code: 200 - duration: 29.760291ms + duration: 25.681042ms - id: 11 request: proto: HTTP/1.1 @@ -563,8 +567,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -572,20 +576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":true,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.173392Z"}' headers: Content-Length: - - "1072" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03070ddf-ebcf-463f-af2f-802f24e2251c + - 2ba94e94-d028-456d-b435-be11f66308d5 status: 200 OK code: 200 - duration: 37.958ms + duration: 27.096791ms - id: 12 request: proto: HTTP/1.1 @@ -612,8 +616,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/2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -621,20 +625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.915343Z","id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-28T10:05:15.915343Z"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "380" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fd68e23-6406-4c0b-bab6-960a8c0205a2 + - 5ad485e4-841b-47f1-a41a-7608dc5a731e status: 200 OK code: 200 - duration: 35.406584ms + duration: 39.126125ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +665,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/ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -670,20 +674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.899057Z","id":"ba32620d-0617-4566-b90a-6272951bb0a5","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-28T10:05:15.899057Z"}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "390" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f10af8e-faf9-47af-98c2-78237780e940 + - 0b117d82-dad0-4d1e-9c80-856999bb98e7 status: 200 OK code: 200 - duration: 36.288708ms + duration: 37.739708ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +714,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -719,20 +723,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":true,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.250231Z"}' headers: Content-Length: - - "1072" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f47ca9b6-2870-45b3-ad5f-4ae1a4fdac74 + - 1b416a0b-cd99-46cb-bec8-4b604b5a61f8 status: 200 OK code: 200 - duration: 39.944791ms + duration: 37.199375ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +763,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -768,20 +772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":true,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.173392Z"}' headers: Content-Length: - - "1050" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 574b92f0-232d-4417-8537-14a5fc939f0b + - 9275db7f-335a-4bc1-9892-01438f4866c0 status: 200 OK code: 200 - duration: 39.634208ms + duration: 37.209916ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +812,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -817,20 +821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1088" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a16f870-51c2-4c0b-a807-776b44e7cdab + - 32937d4d-730a-42ed-86ab-e0fcd352e6f2 status: 200 OK code: 200 - duration: 69.752375ms + duration: 34.464292ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +861,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -866,20 +870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1113 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1113" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e5eaca3-bcc1-4259-934f-53e22949ef15 + - 1dfee5d3-4960-4f2a-bb51-a498d4b49518 status: 200 OK code: 200 - duration: 76.986875ms + duration: 37.617208ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +910,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -915,20 +919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"total_count":1}' headers: Content-Length: - - "1049" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e0979ed-dc48-497e-8cf0-62a5229c5c91 + - e3584e74-f6e5-4668-b4a1-59dc84583ca0 status: 200 OK code: 200 - duration: 29.942833ms + duration: 45.02675ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +959,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -964,20 +968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1073" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31be48bf-d543-4631-a3ee-dbd078b83218 + - cfb11502-f1fb-4155-9927-79e9d2c4653a status: 200 OK code: 200 - duration: 64.885708ms + duration: 29.789833ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1008,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1131 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"total_count":1}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"total_count":1}' headers: Content-Length: - - "1089" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96318bc8-a0b2-4c8a-9c9c-7b9343fe0aea + - 232f6efd-eb2b-4514-99ab-c929e4739d39 status: 200 OK code: 200 - duration: 80.639791ms + duration: 72.027708ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1057,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1062,20 +1066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1112 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1112" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56bec642-45d2-415c-9163-0bb440fbabb6 + - 62cb5f06-7a88-46a3-bff3-270eefc2ddbb status: 200 OK code: 200 - duration: 88.971875ms + duration: 26.401542ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1106,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"total_count":1}' headers: Content-Length: - - "1050" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b80bf849-681e-4287-ada7-95b0d39082ab + - f3c12955-0bb5-4133-ac20-039a214c5802 status: 200 OK code: 200 - duration: 28.572166ms + duration: 54.853208ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1155,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1164,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"total_count":1}' headers: Content-Length: - - "1072" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1185,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4274ea80-4b99-4c06-8edd-ef31544da477 + - 8fba5f44-eec3-44f3-b619-11fa96321e71 status: 200 OK code: 200 - duration: 30.975458ms + duration: 63.651ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1204,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -1209,20 +1213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1072" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1234,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c72485de-bae8-4bb3-ba17-f04a99c60d0b + - 96478710-1368-47a0-9f78-ed3489b1405c status: 200 OK code: 200 - duration: 34.599667ms + duration: 40.964625ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1253,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1258,20 +1262,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1050" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 014601d4-f527-4ba4-96d0-24b7bfcdb1aa + - 1361cfb1-8e15-4fe5-be0b-9928483d8bfd status: 200 OK code: 200 - duration: 35.2775ms + duration: 32.228875ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1302,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -1307,20 +1311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1088 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1088" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a665717-e770-43b8-b9b1-b9e565a636a7 + - fc12e44b-6295-4316-884c-58f570674e79 status: 200 OK code: 200 - duration: 76.67775ms + duration: 28.2655ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1351,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1356,20 +1360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1113 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1113" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1381,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70b719f7-b8b2-4113-a930-e60ed442a9eb + - 0928f184-177c-4583-8d0c-8b79e530385e status: 200 OK code: 200 - duration: 79.74725ms + duration: 19.526083ms - id: 28 request: proto: HTTP/1.1 @@ -1396,8 +1400,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -1405,20 +1409,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"total_count":1}' headers: Content-Length: - - "1050" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1430,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8baf8be3-4a3b-4a6f-b6d7-6a438a0877a9 + - f5a6a43d-1f82-4ed6-84ee-447f75777379 status: 200 OK code: 200 - duration: 31.563875ms + duration: 40.246167ms - id: 29 request: proto: HTTP/1.1 @@ -1445,8 +1449,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -1454,20 +1458,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"total_count":1}' headers: Content-Length: - - "1072" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1479,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 724c4c54-c151-4627-a9ff-29f6c37b5b55 + - ed66bf44-5194-4d3f-9afe-09d283a75f62 status: 200 OK code: 200 - duration: 34.372458ms + duration: 47.296334ms - id: 30 request: proto: HTTP/1.1 @@ -1494,8 +1498,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/ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1503,20 +1507,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.899057Z","id":"ba32620d-0617-4566-b90a-6272951bb0a5","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-28T10:05:15.899057Z"}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "380" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,10 +1528,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d6f328-8a53-4cfa-a025-289d7725e733 + - d07bec22-f4f2-4723-ad9f-745989cad201 status: 200 OK code: 200 - duration: 37.776833ms + duration: 24.728125ms - id: 31 request: proto: HTTP/1.1 @@ -1543,8 +1547,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/2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -1552,20 +1556,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 390 + content_length: 1092 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.915343Z","id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-28T10:05:15.915343Z"}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "390" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:49 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1573,10 +1577,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f002666a-f7f7-4867-b816-efd966e1eeca + - 3276baca-324e-4331-861b-91231833059d status: 200 OK code: 200 - duration: 38.216625ms + duration: 30.274292ms - id: 32 request: proto: HTTP/1.1 @@ -1592,8 +1596,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -1601,20 +1605,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"created_at":"2025-06-30T15:21:48.211631Z","custom_routes_propagation_enabled":true,"id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2","is_default":false,"name":"TestAccScalewayResourceVPC_Basic01","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-06-30T15:21:48.250231Z"}' headers: Content-Length: - - "1072" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,10 +1626,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 475366c7-357b-4c73-97b5-f03ff454cc50 + - 4045c658-696a-435f-98ae-91519b0e3a46 status: 200 OK code: 200 - duration: 29.519791ms + duration: 25.985125ms - id: 33 request: proto: HTTP/1.1 @@ -1641,8 +1645,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -1650,20 +1654,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 421 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"created_at":"2025-06-30T15:21:48.128676Z","custom_routes_propagation_enabled":true,"id":"2403b16d-9018-4a8e-90eb-bb167f2f7360","is_default":false,"name":"TestAccScalewayResourceVPC_Basic02","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-06-30T15:21:48.173392Z"}' headers: Content-Length: - - "1050" + - "421" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,10 +1675,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd767e1a-a1d3-4179-a36e-60226e348c2b + - 99ec0e39-c52d-4d71-adbc-f6c2eccb44e7 status: 200 OK code: 200 - duration: 35.518791ms + duration: 30.210792ms - id: 34 request: proto: HTTP/1.1 @@ -1690,8 +1694,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -1699,20 +1703,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1112 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1112" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,10 +1724,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3abf147-9d01-4ce4-9b62-e7713c3e8378 + - dd6a25f9-8a17-448a-80b9-b02641cd2d5d status: 200 OK code: 200 - duration: 85.485375ms + duration: 29.3675ms - id: 35 request: proto: HTTP/1.1 @@ -1739,8 +1743,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1748,20 +1752,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1089" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,10 +1773,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82ed074e-56a7-4953-8dbb-de4438c11595 + - e4f51fe5-1010-4a04-b032-b985a966a2d8 status: 200 OK code: 200 - duration: 88.128709ms + duration: 27.12225ms - id: 36 request: proto: HTTP/1.1 @@ -1788,8 +1792,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -1797,20 +1801,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"total_count":1}' headers: Content-Length: - - "1072" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,10 +1822,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61e50d37-ff5e-4a71-a9a0-cc04b3d58ff4 + - 3091dcce-cd8e-4dfd-8ab8-cb7c03628888 status: 200 OK code: 200 - duration: 27.606292ms + duration: 49.36ms - id: 37 request: proto: HTTP/1.1 @@ -1837,8 +1841,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -1846,20 +1850,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1050 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"total_count":1}' headers: Content-Length: - - "1050" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,10 +1871,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f0af61c-2b0d-45ae-bba6-4db81a72a47d + - a37754a4-1a0a-4747-bb0e-c0677648f777 status: 200 OK code: 200 - duration: 33.384417ms + duration: 62.437833ms - id: 38 request: proto: HTTP/1.1 @@ -1886,8 +1890,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -1895,20 +1899,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1112 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' headers: Content-Length: - - "1112" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,10 +1920,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c16f9ef0-1909-4534-a6cb-7c085de8cfe8 + - 63ddc160-0625-4738-bbe8-ac19f2e6da82 status: 200 OK code: 200 - duration: 58.871583ms + duration: 45.83775ms - id: 39 request: proto: HTTP/1.1 @@ -1935,8 +1939,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?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -1944,20 +1948,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1089 + content_length: 1092 uncompressed: false - body: '{"private_networks":[{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"total_count":1}' + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' headers: Content-Length: - - "1089" + - "1092" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,10 +1969,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f670035-65d1-4580-9de9-bcb73d752f29 + - 1db98353-01e8-44a8-a5f9-e3ea142a0e45 status: 200 OK code: 200 - duration: 68.097292ms + duration: 33.630917ms - id: 40 request: proto: HTTP/1.1 @@ -1984,8 +1988,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: GET response: proto: HTTP/2.0 @@ -1993,20 +1997,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1049 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.082270Z","dhcp_enabled":true,"id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.082270Z","id":"9a6d3d22-2e64-4586-a764-a6d31967c976","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.8.0/22","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"},{"created_at":"2025-01-28T10:05:16.082270Z","id":"d3bd27fb-7f59-4a96-ad1c-d2937b7275dd","private_network_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:93a7::/64","updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}],"tags":[],"updated_at":"2025-01-28T10:05:16.082270Z","vpc_id":"2006808a-bde0-41f4-9aed-dc3a6b198c5f"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"total_count":1}' headers: Content-Length: - - "1049" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2014,10 +2018,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51495949-5f6a-4d82-9aab-5579a61ab1cb + - 475b87b2-ea5f-4dd7-b64f-96c0091a3526 status: 200 OK code: 200 - duration: 25.412334ms + duration: 55.263625ms - id: 41 request: proto: HTTP/1.1 @@ -2033,8 +2037,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks?name=TestAccScalewayResourceVPCPrivateNetwork_Basic&order_by=created_at_asc&vpc_id=2403b16d-9018-4a8e-90eb-bb167f2f7360 method: GET response: proto: HTTP/2.0 @@ -2042,20 +2046,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1073 + content_length: 1131 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:16.134100Z","dhcp_enabled":true,"id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:16.134100Z","id":"ab73bcda-f268-436d-bcef-9bf925b62465","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.12.0/22","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"},{"created_at":"2025-01-28T10:05:16.134100Z","id":"0cfb003d-57d6-43a4-93a1-ed92cf9a51be","private_network_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:d711::/64","updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}],"tags":[],"updated_at":"2025-01-28T10:05:16.134100Z","vpc_id":"ba32620d-0617-4566-b90a-6272951bb0a5"}' + body: '{"private_networks":[{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"total_count":1}' headers: Content-Length: - - "1073" + - "1131" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:21:50 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2063,10 +2067,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5a738c1-137e-4c76-8d31-ae585d410607 + - f39ba1ff-b84f-4a9e-a521-028dad7cc26d status: 200 OK code: 200 - duration: 24.362708ms + duration: 65.326959ms - id: 42 request: proto: HTTP/1.1 @@ -2082,8 +2086,106 @@ 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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1092 + uncompressed: false + body: '{"created_at":"2025-06-30T15:21:48.354623Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e5afb553-4955-443a-a621-6b967c729ba6","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.354623Z","id":"33fd3896-fc9d-43de-b96f-5ec188150c16","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"},{"created_at":"2025-06-30T15:21:48.354623Z","id":"c2c30f58-f3d9-4f6e-b23e-c58d5d43ae8b","private_network_id":"e5afb553-4955-443a-a621-6b967c729ba6","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9fe4::/64","updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}],"tags":[],"updated_at":"2025-06-30T15:21:48.354623Z","vpc_id":"e6fcc98a-a9b9-47d4-9908-18c1511d05d2"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - beb4d447-5ad2-412b-90f2-61ea59091ff6 + status: 200 OK + code: 200 + duration: 28.281666ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1092 + uncompressed: false + body: '{"created_at":"2025-06-30T15:21:48.265387Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","name":"TestAccScalewayResourceVPCPrivateNetwork_Basic","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:21:48.265387Z","id":"9782f53f-2d86-40b5-91b1-7122c3a15cb5","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"},{"created_at":"2025-06-30T15:21:48.265387Z","id":"76be111a-0d5a-43d8-b4d5-cbc548fa73d4","private_network_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:d969::/64","updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}],"tags":[],"updated_at":"2025-06-30T15:21:48.265387Z","vpc_id":"2403b16d-9018-4a8e-90eb-bb167f2f7360"}' + headers: + Content-Length: + - "1092" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:50 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3bad8798-03a5-4810-91e9-6e638d617332 + status: 200 OK + code: 200 + duration: 29.0545ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: DELETE response: proto: HTTP/2.0 @@ -2100,9 +2202,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2110,11 +2212,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 473837d9-7478-4ad1-be9a-406afede5e7a + - 2245c5a1-b1aa-457a-8727-7e3231d8d271 status: 204 No Content code: 204 - duration: 1.914207125s - - id: 43 + duration: 2.250897666s + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2129,8 +2231,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: DELETE response: proto: HTTP/2.0 @@ -2147,9 +2249,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2157,11 +2259,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 675cada5-b3d0-42fd-9f70-319b094f2708 + - 1ee4a6bf-ce59-4b35-8028-0a5f98e9b8f2 status: 204 No Content code: 204 - duration: 1.921564375s - - id: 44 + duration: 2.255783541s + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2176,8 +2278,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/2006808a-bde0-41f4-9aed-dc3a6b198c5f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2403b16d-9018-4a8e-90eb-bb167f2f7360 method: DELETE response: proto: HTTP/2.0 @@ -2194,9 +2296,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2204,11 +2306,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95497ace-fed7-47ea-b584-4a07a857c862 + - 9774a1ef-f803-46ba-8658-91801a4c42e5 status: 204 No Content code: 204 - duration: 80.39075ms - - id: 45 + duration: 105.027375ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2223,8 +2325,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/ba32620d-0617-4566-b90a-6272951bb0a5 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e6fcc98a-a9b9-47d4-9908-18c1511d05d2 method: DELETE response: proto: HTTP/2.0 @@ -2241,9 +2343,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2251,11 +2353,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b60f71b-f0af-489c-9e9e-d432a43aac24 + - 68fcd503-0eba-4afe-8a02-f326e9a4476f status: 204 No Content code: 204 - duration: 86.870917ms - - id: 46 + duration: 120.204708ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2270,8 +2372,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -2281,7 +2383,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"e5afb553-4955-443a-a621-6b967c729ba6","type":"not_found"}' headers: Content-Length: - "136" @@ -2290,9 +2392,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2300,11 +2402,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac7b878e-6d71-4c7d-9599-91aa1418929e + - 164ffdf6-70b9-4a26-ba8e-128d18e94a8a status: 404 Not Found code: 404 - duration: 26.060792ms - - id: 47 + duration: 33.910083ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2319,8 +2421,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -2330,7 +2432,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","type":"not_found"}' headers: Content-Length: - "136" @@ -2339,9 +2441,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:52 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2349,11 +2451,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bdc1083e-34ea-44a2-b668-272ff3c0ffb9 + - f41bc91b-75a4-4609-9755-ef1cec9177f7 status: 404 Not Found code: 404 - duration: 31.072958ms - - id: 48 + duration: 28.122166ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2368,8 +2470,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/013a2153-293c-463c-b6f5-47dd5b6b1d87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e5afb553-4955-443a-a621-6b967c729ba6 method: GET response: proto: HTTP/2.0 @@ -2379,7 +2481,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"013a2153-293c-463c-b6f5-47dd5b6b1d87","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"e5afb553-4955-443a-a621-6b967c729ba6","type":"not_found"}' headers: Content-Length: - "136" @@ -2388,9 +2490,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2398,11 +2500,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9376986f-1592-42cb-9382-2cbffe87537b + - c77fb3a9-eb07-4302-a46d-2cc78e83965f status: 404 Not Found code: 404 - duration: 27.932333ms - - id: 49 + duration: 25.592042ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2417,8 +2519,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/655308fe-e86a-4c4f-a8f6-1ae3c65e66c8 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/6975022a-e7a3-4cc3-8490-4e89873ae9e1 method: GET response: proto: HTTP/2.0 @@ -2428,7 +2530,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"655308fe-e86a-4c4f-a8f6-1ae3c65e66c8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"6975022a-e7a3-4cc3-8490-4e89873ae9e1","type":"not_found"}' headers: Content-Length: - "136" @@ -2437,9 +2539,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:21:53 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2447,7 +2549,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffc13aeb-acda-43d3-b6cb-1369721bd1aa + - cd927e9b-8215-41ad-a034-161fb1ab6916 status: 404 Not Found code: 404 - duration: 25.305833ms + duration: 28.142083ms diff --git a/internal/services/vpc/testfuncs/checks.go b/internal/services/vpc/testdata/testfuncs/checks.go similarity index 100% rename from internal/services/vpc/testfuncs/checks.go rename to internal/services/vpc/testdata/testfuncs/checks.go diff --git a/internal/services/vpc/testfuncs/sweep.go b/internal/services/vpc/testdata/testfuncs/sweep.go similarity index 100% rename from internal/services/vpc/testfuncs/sweep.go rename to internal/services/vpc/testdata/testfuncs/sweep.go diff --git a/internal/services/vpc/testdata/vpc-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-basic.cassette.yaml index db7cf3164b..e1ffb5b93a 100644 --- a/internal/services/vpc/testdata/vpc-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-basic.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 396 uncompressed: false - body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":false,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.670387Z"}' + body: '{"created_at":"2025-06-30T15:18:57.298587Z","custom_routes_propagation_enabled":false,"id":"9582509b-8541-4863-8fce-cd445ad51ae3","is_default":false,"name":"test-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-06-30T15:18:57.298587Z"}' headers: Content-Length: - "396" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:34 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f04f91d-97ab-469c-b188-6b76ee3eccd0 + - 8913db50-529a-4208-b70b-f5564e9a552c status: 200 OK code: 200 - duration: 536.625333ms + duration: 355.435042ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934/enable-custom-routes-propagation + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 395 uncompressed: false - body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' + body: '{"created_at":"2025-06-30T15:18:57.298587Z","custom_routes_propagation_enabled":true,"id":"9582509b-8541-4863-8fce-cd445ad51ae3","is_default":false,"name":"test-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-06-30T15:18:57.343415Z"}' headers: Content-Length: - "395" @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:34 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6bb917f-493a-47b9-b349-7831deac1278 + - 85f3ac8d-2613-4e38-a91f-5ed492bf3fed status: 200 OK code: 200 - duration: 85.197834ms + duration: 43.8185ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3 method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 395 uncompressed: false - body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' + body: '{"created_at":"2025-06-30T15:18:57.298587Z","custom_routes_propagation_enabled":true,"id":"9582509b-8541-4863-8fce-cd445ad51ae3","is_default":false,"name":"test-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-06-30T15:18:57.343415Z"}' headers: Content-Length: - "395" @@ -138,7 +138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:34 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6f98d75e-5678-46f5-b9e9-d8e72df9432d + - c8bf5175-7fb5-4576-9c03-a816d8ec6ae3 status: 200 OK code: 200 - duration: 53.833917ms + duration: 33.116ms - id: 3 request: proto: HTTP/1.1 @@ -168,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3 method: GET response: proto: HTTP/2.0 @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 395 uncompressed: false - body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' + body: '{"created_at":"2025-06-30T15:18:57.298587Z","custom_routes_propagation_enabled":true,"id":"9582509b-8541-4863-8fce-cd445ad51ae3","is_default":false,"name":"test-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-06-30T15:18:57.343415Z"}' headers: Content-Length: - "395" @@ -187,7 +187,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:34 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f92f8a4c-7471-4a2c-ac9a-10184e5f1c0d + - 923789dd-c8e1-4e9e-833a-1bb1589662b2 status: 200 OK code: 200 - duration: 53.938875ms + duration: 31.804292ms - id: 4 request: proto: HTTP/1.1 @@ -217,7 +217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3 method: GET response: proto: HTTP/2.0 @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 395 uncompressed: false - body: '{"created_at":"2025-06-30T14:35:34.670387Z","custom_routes_propagation_enabled":true,"id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","is_default":false,"name":"test-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-06-30T14:35:34.769793Z"}' + body: '{"created_at":"2025-06-30T15:18:57.298587Z","custom_routes_propagation_enabled":true,"id":"9582509b-8541-4863-8fce-cd445ad51ae3","is_default":false,"name":"test-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-06-30T15:18:57.343415Z"}' headers: Content-Length: - "395" @@ -236,7 +236,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:35 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90ba7bae-3637-49f0-a701-711503be697a + - 38544fee-c336-4e8b-8260-7e01462f0704 status: 200 OK code: 200 - duration: 54.986333ms + duration: 23.374834ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3 method: DELETE response: proto: HTTP/2.0 @@ -283,7 +283,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:35 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -293,10 +293,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4b34a41-13d8-4b42-a53b-51fcbb22c1e6 + - 0cab51aa-3d26-43b4-883f-307b97a6d71d status: 204 No Content code: 204 - duration: 128.426209ms + duration: 137.098542ms - id: 6 request: proto: HTTP/1.1 @@ -313,7 +313,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/aeacecb1-97ff-4429-a379-ef7faa9f4934 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/9582509b-8541-4863-8fce-cd445ad51ae3 method: GET response: proto: HTTP/2.0 @@ -323,7 +323,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"aeacecb1-97ff-4429-a379-ef7faa9f4934","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"9582509b-8541-4863-8fce-cd445ad51ae3","type":"not_found"}' headers: Content-Length: - "124" @@ -332,7 +332,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:35:35 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -342,7 +342,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c69b9cf-eb33-4e64-973b-af160e9c8c02 + - efc3867c-f118-40e4-816e-04a169cd0f7c status: 404 Not Found code: 404 - duration: 29.296ms + duration: 21.375875ms diff --git a/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml b/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml index 893ccdf6c2..d6ab450567 100644 --- a/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-vpc-disable-routing","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"test-vpc-disable-routing","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.4; darwin; arm64) 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: 380 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:22.975083Z","id":"6e010a90-10d4-4539-90e6-99f5824e463c","is_default":false,"name":"test-vpc-disable-routing","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-28T10:05:22.975083Z"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "380" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,113 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93396dd7-85ac-4041-a469-140eff3e8736 + - e5679b93-6caf-44fc-b9a9-6a1bb918333d + status: 500 Internal Server Error + code: 500 + duration: 1.813122s + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"test-vpc-disable-routing","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 412 + uncompressed: false + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":false,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.799709Z"}' + headers: + Content-Length: + - "412" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:19:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e4200d5e-3359-48bc-8cf3-affe42369ee5 status: 200 OK code: 200 - duration: 85.299208ms - - id: 1 + duration: 71.130208ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 411 + uncompressed: false + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + headers: + Content-Length: + - "411" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:19:00 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 54ee7bca-b033-4f69-8488-4d99db937d06 + status: 200 OK + code: 200 + duration: 46.259333ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +169,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/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: GET response: proto: HTTP/2.0 @@ -76,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 411 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:22.975083Z","id":"6e010a90-10d4-4539-90e6-99f5824e463c","is_default":false,"name":"test-vpc-disable-routing","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-28T10:05:22.975083Z"}' + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' headers: Content-Length: - - "370" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c26b48d-0241-4bc6-8fc7-8bc7b18f65a7 + - 593f34d5-0a2f-4cda-ab58-36de782cb7f6 status: 200 OK code: 200 - duration: 37.264584ms - - id: 2 + duration: 30.720083ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -116,8 +218,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/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: GET response: proto: HTTP/2.0 @@ -125,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 411 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:22.975083Z","id":"6e010a90-10d4-4539-90e6-99f5824e463c","is_default":false,"name":"test-vpc-disable-routing","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-28T10:05:22.975083Z"}' + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' headers: Content-Length: - - "380" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:23 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0423c804-18a4-45af-8c0b-c3cf4173b2a9 + - 228ce444-7d3f-4279-8eb7-3cf635a22971 status: 200 OK code: 200 - duration: 48.532ms - - id: 3 + duration: 25.925833ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -165,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/vpc/v2/regions/fr-par/vpcs/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: GET response: proto: HTTP/2.0 @@ -174,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 380 + content_length: 411 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:22.975083Z","id":"6e010a90-10d4-4539-90e6-99f5824e463c","is_default":false,"name":"test-vpc-disable-routing","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-28T10:05:22.975083Z"}' + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' headers: Content-Length: - - "380" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,11 +297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df347f9b-6e98-4eb1-9e19-4074283a6c05 + - ec7d2d31-a9d4-4205-b29a-eae136e991cc status: 200 OK code: 200 - duration: 31.766417ms - - id: 4 + duration: 27.507625ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -214,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/vpcs/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: GET response: proto: HTTP/2.0 @@ -223,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 370 + content_length: 411 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:22.975083Z","id":"6e010a90-10d4-4539-90e6-99f5824e463c","is_default":false,"name":"test-vpc-disable-routing","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-28T10:05:22.975083Z"}' + body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' headers: Content-Length: - - "370" + - "411" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e0037c3-bc69-42f0-abed-37dd1fcab62a + - e43bea84-2edf-4bdb-a05f-1aa6011ec0d4 status: 200 OK code: 200 - duration: 34.668083ms - - id: 5 + duration: 35.079458ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -263,8 +365,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/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: DELETE response: proto: HTTP/2.0 @@ -281,9 +383,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,11 +393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2bd69723-583c-43f6-ad67-5b2a5e58bdf8 + - d7aea771-3cf8-47d0-a0c2-fa8ad7e0433d status: 204 No Content code: 204 - duration: 76.231917ms - - id: 6 + duration: 72.577709ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -310,8 +412,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/6e010a90-10d4-4539-90e6-99f5824e463c + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 method: GET response: proto: HTTP/2.0 @@ -321,7 +423,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"6e010a90-10d4-4539-90e6-99f5824e463c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","type":"not_found"}' headers: Content-Length: - "124" @@ -330,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -340,7 +442,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6d02d0e-9aa3-4823-8c8b-4945d73fc193 + - 00437e37-e4e7-4454-b4c8-dbfb91058e08 status: 404 Not Found code: 404 - duration: 33.744833ms + duration: 27.466541ms diff --git a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml index dec5fce9fa..080903b114 100644 --- a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml @@ -2,6 +2,57 @@ version: 2 interactions: - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 150 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"private-network-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 28 + uncompressed: false + body: '{"message":"internal error"}' + headers: + Content-Length: + - "28" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25d72a0a-9376-4e27-bbee-bf23e9786ea0 + status: 500 Internal Server Error + code: 500 + duration: 576.247625ms + - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -29,7 +80,7 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1066" @@ -38,9 +89,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:29 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +99,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01a8cb4f-07f5-4d0d-8191-403c62a2eb8c + - b586c2e6-5b3f-4e87-8356-80aaf82b793e status: 200 OK code: 200 - duration: 929.528625ms - - id: 1 + duration: 628.509584ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -68,7 +119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -78,7 +129,7 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1066" @@ -87,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:30 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,11 +148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4af250b-7022-4090-98ff-57794ddc25c2 + - ecced155-e120-4e7c-b72e-ecafb72518ad status: 200 OK code: 200 - duration: 64.7065ms - - id: 2 + duration: 31.767ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -117,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -127,7 +178,7 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1066" @@ -136,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:30 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,11 +197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2dd9d5db-6347-4620-8a23-9927959ba862 + - 95bd5ea2-cbf6-463e-962f-1c64f4ff8d80 status: 200 OK code: 200 - duration: 80.208875ms - - id: 3 + duration: 32.196333ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -166,7 +217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -176,7 +227,7 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1066" @@ -185,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:30 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,11 +246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b3d78bc-d66c-4175-b4f1-5da2b70c5f99 + - 7128f2ad-daec-4dad-a6d5-92f377cd5774 status: 200 OK code: 200 - duration: 138.1595ms - - id: 4 + duration: 29.690667ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -215,7 +266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -225,7 +276,7 @@ interactions: trailer: {} content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1066" @@ -234,9 +285,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:30 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,11 +295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4cc6296-1400-41cc-b19d-02f1ebd16487 + - ce82d00c-8798-45cb-81c7-e8eb30b97eef status: 200 OK code: 200 - duration: 65.257375ms - - id: 5 + duration: 25.650667ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -266,7 +317,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: PATCH response: proto: HTTP/2.0 @@ -276,7 +327,7 @@ interactions: trailer: {} content_length: 1078 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1078" @@ -285,9 +336,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:31 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91cb1524-2eac-473f-9e01-8b5eceb74cb9 + - 11064239-63ae-410d-8b16-6261d712534a status: 200 OK code: 200 - duration: 126.009ms - - id: 6 + duration: 41.299083ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -315,7 +366,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -325,7 +376,7 @@ interactions: trailer: {} content_length: 1078 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1078" @@ -334,9 +385,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:31 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12dbd27a-af8b-4169-961a-858dfc3d02ad + - f1a21cf7-a3a8-40c5-8a52-e444a0a204b6 status: 200 OK code: 200 - duration: 32.513666ms - - id: 7 + duration: 36.886292ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -364,7 +415,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -374,7 +425,7 @@ interactions: trailer: {} content_length: 1078 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1078" @@ -383,9 +434,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:31 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 516bec97-4f05-4948-b50f-7c08025d299a + - 7cfc3a89-9223-464f-9c4e-39b8b7218581 status: 200 OK code: 200 - duration: 44.37725ms - - id: 8 + duration: 26.493417ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -413,7 +464,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -423,7 +474,7 @@ interactions: trailer: {} content_length: 1078 uncompressed: false - body: '{"created_at":"2025-06-30T14:47:29.349758Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T14:47:29.349758Z","id":"783ed1f7-b5f6-4bea-965f-77411f810b16","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T14:47:29.349758Z","id":"e30e230f-1d6c-4c60-9c35-360302e2e791","private_network_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6392::/64","updated_at":"2025-06-30T14:47:29.349758Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T14:47:30.993579Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1078" @@ -432,9 +483,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:31 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 842dfca0-bd43-4506-b1f9-eeb8a69c82cb + - 1dd916ae-cdf1-48c8-9a4c-4e9a72379a97 status: 200 OK code: 200 - duration: 26.725375ms - - id: 9 + duration: 27.185792ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -462,7 +513,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: DELETE response: proto: HTTP/2.0 @@ -479,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:35 GMT + - Mon, 30 Jun 2025 15:19:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,11 +540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e3d189d-55f4-4d9e-b1d8-82ff7a05dd30 + - 58b3a80a-a070-4ed8-a36a-49c9d750ebaa status: 204 No Content code: 204 - duration: 4.349543667s - - id: 10 + duration: 3.84988075s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -509,7 +560,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c6915b5c-ee62-4fc9-a8d9-17382a4a94f8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 method: GET response: proto: HTTP/2.0 @@ -519,7 +570,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"c6915b5c-ee62-4fc9-a8d9-17382a4a94f8","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","type":"not_found"}' headers: Content-Length: - "136" @@ -528,9 +579,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 14:47:36 GMT + - Mon, 30 Jun 2025 15:19:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,7 +589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec96b6d0-48b0-4b5c-bcb6-d4060d27c840 + - c4bd7259-f6a5-4f6a-8af7-6a7ae64ad8e0 status: 404 Not Found code: 404 - duration: 87.2175ms + duration: 44.429667ms diff --git a/internal/services/vpc/testdata/vpc-private-network-default-name.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-default-name.cassette.yaml index aef43ec434..43da0d631a 100644 --- a/internal/services/vpc/testdata/vpc-private-network-default-name.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-default-name.cassette.yaml @@ -6,19 +6,19 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 110 + content_length: 148 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-inspiring-yonath","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null}' + body: '{"name":"tf-pn-musing-dirac","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.903966Z","dhcp_enabled":true,"id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","name":"tf-pn-inspiring-yonath","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.903966Z","id":"7584e46a-54f7-4884-8249-fc67933fefa3","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.903966Z","id":"7580b5cd-19ec-46ba-ace1-f198cc978460","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9d9::/64","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:18:57.308685Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","name":"tf-pn-musing-dirac","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.308685Z","id":"51491a44-c838-4d7d-a475-460b79fc9825","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:57.308685Z","id":"6afe90bc-4106-41d8-8749-a7e2919d8c65","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6472::/64","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca7a93e9-5a09-49cd-aaa5-cbd2f4c48f2b + - edda6941-4199-4d63-aac3-88792708eeef status: 200 OK code: 200 - duration: 1.270465958s + duration: 1.090263583s - 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/private-networks/3d9299ce-087f-4dc0-8b47-affd8ec1da07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dc36f227-39e9-4716-9fcb-fcb5744aacba method: GET response: proto: HTTP/2.0 @@ -76,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.903966Z","dhcp_enabled":true,"id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","name":"tf-pn-inspiring-yonath","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.903966Z","id":"7584e46a-54f7-4884-8249-fc67933fefa3","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.903966Z","id":"7580b5cd-19ec-46ba-ace1-f198cc978460","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9d9::/64","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:18:57.308685Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","name":"tf-pn-musing-dirac","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.308685Z","id":"51491a44-c838-4d7d-a475-460b79fc9825","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:57.308685Z","id":"6afe90bc-4106-41d8-8749-a7e2919d8c65","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6472::/64","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 705529db-45f7-4794-877f-f08b902fccaa + - 97bb9cb6-8114-4247-ad66-5c08ef04d4e6 status: 200 OK code: 200 - duration: 31.063916ms + duration: 26.211ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +116,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d9299ce-087f-4dc0-8b47-affd8ec1da07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dc36f227-39e9-4716-9fcb-fcb5744aacba method: GET response: proto: HTTP/2.0 @@ -125,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1048 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.903966Z","dhcp_enabled":true,"id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","name":"tf-pn-inspiring-yonath","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.903966Z","id":"7584e46a-54f7-4884-8249-fc67933fefa3","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.903966Z","id":"7580b5cd-19ec-46ba-ace1-f198cc978460","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9d9::/64","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:18:57.308685Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","name":"tf-pn-musing-dirac","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.308685Z","id":"51491a44-c838-4d7d-a475-460b79fc9825","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:57.308685Z","id":"6afe90bc-4106-41d8-8749-a7e2919d8c65","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6472::/64","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1048" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ce8aac9-0206-4f86-a381-b184bd51ae45 + - 054d84e0-2e8d-4f4e-848b-4e7140cc387e status: 200 OK code: 200 - duration: 31.252583ms + duration: 26.436542ms - id: 3 request: proto: HTTP/1.1 @@ -165,8 +165,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d9299ce-087f-4dc0-8b47-affd8ec1da07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dc36f227-39e9-4716-9fcb-fcb5744aacba method: GET response: proto: HTTP/2.0 @@ -174,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1025 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.903966Z","dhcp_enabled":true,"id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","name":"tf-pn-inspiring-yonath","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:15.903966Z","id":"7584e46a-54f7-4884-8249-fc67933fefa3","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"},{"created_at":"2025-01-28T10:05:15.903966Z","id":"7580b5cd-19ec-46ba-ace1-f198cc978460","private_network_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:9d9::/64","updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}],"tags":[],"updated_at":"2025-01-28T10:05:15.903966Z","vpc_id":"8feba4f5-79f9-42cd-b5ce-3ed8c510569e"}' + body: '{"created_at":"2025-06-30T15:18:57.308685Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","name":"tf-pn-musing-dirac","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.308685Z","id":"51491a44-c838-4d7d-a475-460b79fc9825","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:57.308685Z","id":"6afe90bc-4106-41d8-8749-a7e2919d8c65","private_network_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6472::/64","updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:57.308685Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1025" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +195,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af6041af-7de6-4b39-8f51-a45aa366fd79 + - 4b25a773-560b-4589-8050-c94189532a8c status: 200 OK code: 200 - duration: 37.379375ms + duration: 27.352958ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +214,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d9299ce-087f-4dc0-8b47-affd8ec1da07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dc36f227-39e9-4716-9fcb-fcb5744aacba method: DELETE response: proto: HTTP/2.0 @@ -232,9 +232,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -242,10 +242,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4ed931b4-c5fe-4b81-92e0-70acc8a9d090 + - c1520905-3631-4cf7-865f-45255eeccadf status: 204 No Content code: 204 - duration: 1.609331375s + duration: 1.82706925s - id: 5 request: proto: HTTP/1.1 @@ -261,8 +261,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/3d9299ce-087f-4dc0-8b47-affd8ec1da07 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/dc36f227-39e9-4716-9fcb-fcb5744aacba method: GET response: proto: HTTP/2.0 @@ -272,7 +272,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"3d9299ce-087f-4dc0-8b47-affd8ec1da07","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"dc36f227-39e9-4716-9fcb-fcb5744aacba","type":"not_found"}' headers: Content-Length: - "136" @@ -281,9 +281,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,7 +291,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08808a91-6173-4d6a-afe9-b1237980ac36 + - 22643e6e-ddb1-4b16-be1e-75c6cd89ba0a status: 404 Not Found code: 404 - duration: 30.04175ms + duration: 28.211583ms diff --git a/internal/services/vpc/testdata/vpc-private-network-one-subnet.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-one-subnet.cassette.yaml index 97b2305f15..d48ccb1ee2 100644 --- a/internal/services/vpc/testdata/vpc-private-network-one-subnet.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-one-subnet.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.4; darwin; arm64) 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: 362 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.655159Z","id":"486c6277-75b0-4093-80e2-3911ae5001b9","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-28T10:05:20.655159Z"}' + body: '{"created_at":"2025-06-30T15:18:57.270298Z","custom_routes_propagation_enabled":false,"id":"a542701d-5cf5-4025-ae1e-6d61ed624983","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-06-30T15:18:57.270298Z"}' headers: Content-Length: - - "362" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97612b71-9533-4673-8feb-758069e1692e + - 8885cad4-deb2-429b-9ddb-6be22e8d1d47 status: 200 OK code: 200 - duration: 70.250083ms + duration: 321.183875ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a542701d-5cf5-4025-ae1e-6d61ed624983/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:57.270298Z","custom_routes_propagation_enabled":true,"id":"a542701d-5cf5-4025-ae1e-6d61ed624983","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-06-30T15:18:57.319764Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d09e3eac-eca5-4cdf-878c-7105eb6ed3e4 + status: 200 OK + code: 200 + duration: 47.45625ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,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/486c6277-75b0-4093-80e2-3911ae5001b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a542701d-5cf5-4025-ae1e-6d61ed624983 method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.655159Z","id":"486c6277-75b0-4093-80e2-3911ae5001b9","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-28T10:05:20.655159Z"}' + body: '{"created_at":"2025-06-30T15:18:57.270298Z","custom_routes_propagation_enabled":true,"id":"a542701d-5cf5-4025-ae1e-6d61ed624983","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-06-30T15:18:57.319764Z"}' headers: Content-Length: - - "352" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 60b81be8-d6bb-48fb-9eb4-bfcd314b6164 + - 3ecee888-ca53-4d4a-8748-a42e4d80e114 status: 200 OK code: 200 - duration: 36.000375ms - - id: 2 + duration: 32.086208ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 167 + content_length: 209 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-goofy-kilby","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}' + body: '{"name":"tf-pn-angry-ellis","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983","default_route_propagation_enabled":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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1063 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.777186Z","dhcp_enabled":true,"id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","name":"tf-pn-goofy-kilby","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:20.777186Z","id":"7a79c632-efe8-4d23-85b8-2a1ce8b488ae","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"},{"created_at":"2025-01-28T10:05:20.777186Z","id":"12cb231a-783d-415b-9520-1911505346d2","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7b96::/64","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}],"tags":[],"updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}' + body: '{"created_at":"2025-06-30T15:18:57.423026Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","name":"tf-pn-angry-ellis","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.423026Z","id":"f42efd68-883a-4bde-a7c2-17b19fe88bd8","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"},{"created_at":"2025-06-30T15:18:57.423026Z","id":"15d661d7-9278-4200-bd71-5efdec1d40ff","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b540::/64","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}],"tags":[],"updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}' headers: Content-Length: - - "1044" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e569db4f-79f0-424a-aad3-b22db3efac24 + - 59e7aca3-0888-4c2a-9111-abc56769635f status: 200 OK code: 200 - duration: 549.746584ms - - id: 3 + duration: 649.405917ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,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/e766cf1c-792e-4465-9074-da2f04cc4b1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/de430e20-bca3-4bc9-a4c5-b8e9b9987e8d method: GET response: proto: HTTP/2.0 @@ -176,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1063 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.777186Z","dhcp_enabled":true,"id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","name":"tf-pn-goofy-kilby","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:20.777186Z","id":"7a79c632-efe8-4d23-85b8-2a1ce8b488ae","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"},{"created_at":"2025-01-28T10:05:20.777186Z","id":"12cb231a-783d-415b-9520-1911505346d2","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7b96::/64","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}],"tags":[],"updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}' + body: '{"created_at":"2025-06-30T15:18:57.423026Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","name":"tf-pn-angry-ellis","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.423026Z","id":"f42efd68-883a-4bde-a7c2-17b19fe88bd8","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"},{"created_at":"2025-06-30T15:18:57.423026Z","id":"15d661d7-9278-4200-bd71-5efdec1d40ff","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b540::/64","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}],"tags":[],"updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}' headers: Content-Length: - - "1021" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b944c98a-e9a7-46ec-99da-0e530ade6869 + - 80c53b5c-e5d5-40fa-80ef-bbfcce4f2efc status: 200 OK code: 200 - duration: 45.496458ms - - id: 4 + duration: 53.118125ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -216,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/vpc/v2/regions/fr-par/private-networks/e766cf1c-792e-4465-9074-da2f04cc4b1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/de430e20-bca3-4bc9-a4c5-b8e9b9987e8d method: GET response: proto: HTTP/2.0 @@ -225,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1021 + content_length: 1063 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.777186Z","dhcp_enabled":true,"id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","name":"tf-pn-goofy-kilby","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:20.777186Z","id":"7a79c632-efe8-4d23-85b8-2a1ce8b488ae","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"},{"created_at":"2025-01-28T10:05:20.777186Z","id":"12cb231a-783d-415b-9520-1911505346d2","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7b96::/64","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}],"tags":[],"updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}' + body: '{"created_at":"2025-06-30T15:18:57.423026Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","name":"tf-pn-angry-ellis","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.423026Z","id":"f42efd68-883a-4bde-a7c2-17b19fe88bd8","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"},{"created_at":"2025-06-30T15:18:57.423026Z","id":"15d661d7-9278-4200-bd71-5efdec1d40ff","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b540::/64","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}],"tags":[],"updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}' headers: Content-Length: - - "1021" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,11 +297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53a6899e-3722-45b5-8827-0ec0e9086a2b + - 42766415-f6b0-4395-984f-58e64edd39bb status: 200 OK code: 200 - duration: 30.611542ms - - id: 5 + duration: 37.626959ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -265,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/vpcs/486c6277-75b0-4093-80e2-3911ae5001b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a542701d-5cf5-4025-ae1e-6d61ed624983 method: GET response: proto: HTTP/2.0 @@ -274,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.655159Z","id":"486c6277-75b0-4093-80e2-3911ae5001b9","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-28T10:05:20.655159Z"}' + body: '{"created_at":"2025-06-30T15:18:57.270298Z","custom_routes_propagation_enabled":true,"id":"a542701d-5cf5-4025-ae1e-6d61ed624983","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-06-30T15:18:57.319764Z"}' headers: Content-Length: - - "362" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b4ea7cc-6cc6-4046-9bb3-3000b018146d + - 4bc0cddd-6035-44a8-bbb8-f6c7aaabaca8 status: 200 OK code: 200 - duration: 27.255667ms - - id: 6 + duration: 37.112792ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -314,8 +365,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/e766cf1c-792e-4465-9074-da2f04cc4b1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/de430e20-bca3-4bc9-a4c5-b8e9b9987e8d method: GET response: proto: HTTP/2.0 @@ -323,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1044 + content_length: 1063 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:20.777186Z","dhcp_enabled":true,"id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","name":"tf-pn-goofy-kilby","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:20.777186Z","id":"7a79c632-efe8-4d23-85b8-2a1ce8b488ae","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.64.0/22","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"},{"created_at":"2025-01-28T10:05:20.777186Z","id":"12cb231a-783d-415b-9520-1911505346d2","private_network_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:7b96::/64","updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}],"tags":[],"updated_at":"2025-01-28T10:05:20.777186Z","vpc_id":"486c6277-75b0-4093-80e2-3911ae5001b9"}' + body: '{"created_at":"2025-06-30T15:18:57.423026Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","name":"tf-pn-angry-ellis","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.423026Z","id":"f42efd68-883a-4bde-a7c2-17b19fe88bd8","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"},{"created_at":"2025-06-30T15:18:57.423026Z","id":"15d661d7-9278-4200-bd71-5efdec1d40ff","private_network_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:b540::/64","updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}],"tags":[],"updated_at":"2025-06-30T15:18:57.423026Z","vpc_id":"a542701d-5cf5-4025-ae1e-6d61ed624983"}' headers: Content-Length: - - "1044" + - "1063" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5846f9d-8626-4ca1-8232-2d3ca5cfb8a4 + - d7dd5394-4e08-4122-ac0a-120d282b4fd7 status: 200 OK code: 200 - duration: 29.97125ms - - id: 7 + duration: 27.416584ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -363,8 +414,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/e766cf1c-792e-4465-9074-da2f04cc4b1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/de430e20-bca3-4bc9-a4c5-b8e9b9987e8d method: DELETE response: proto: HTTP/2.0 @@ -381,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,11 +442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7b5753a-d2cc-49cb-b892-2a0e52161726 + - d5bfff35-e03c-4aa7-8970-f6e434f9fb8a status: 204 No Content code: 204 - duration: 1.881356625s - - id: 8 + duration: 2.505001125s + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -410,8 +461,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/486c6277-75b0-4093-80e2-3911ae5001b9 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/a542701d-5cf5-4025-ae1e-6d61ed624983 method: DELETE response: proto: HTTP/2.0 @@ -428,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -438,11 +489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3703a2c8-05fe-4cca-8003-d6b8ddb7b97d + - 9a7b25be-6a7a-44e4-8080-9dec18b719b8 status: 204 No Content code: 204 - duration: 77.512334ms - - id: 9 + duration: 107.601ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -457,8 +508,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/e766cf1c-792e-4465-9074-da2f04cc4b1d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/de430e20-bca3-4bc9-a4c5-b8e9b9987e8d method: GET response: proto: HTTP/2.0 @@ -468,7 +519,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"e766cf1c-792e-4465-9074-da2f04cc4b1d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"de430e20-bca3-4bc9-a4c5-b8e9b9987e8d","type":"not_found"}' headers: Content-Length: - "136" @@ -477,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -487,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57a181c7-d41c-4501-a77a-d93200d79d8e + - 322870b5-8b21-4946-a0af-4f62ae223f26 status: 404 Not Found code: 404 - duration: 30.643375ms + duration: 31.76075ms diff --git a/internal/services/vpc/testdata/vpc-private-network-subnets.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-subnets.cassette.yaml index aa3e2d918f..b1d7ab0a21 100644 --- a/internal/services/vpc/testdata/vpc-private-network-subnets.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-subnets.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.4; darwin; arm64) 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: 362 + content_length: 394 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:23.989236Z","id":"8f62a86d-5564-4d78-954c-f0315bd690ad","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-28T10:05:23.989236Z"}' + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":false,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.243697Z"}' headers: Content-Length: - - "362" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,11 +48,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4495258b-cda7-4e7c-be89-2d8ffafcb64b + - 2be38c40-93fd-436c-bf21-6f00b3585b85 status: 200 OK code: 200 - duration: 72.013667ms + duration: 294.017125ms - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 393 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":true,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.285924Z"}' + headers: + Content-Length: + - "393" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18b66b16-a57a-4479-b656-83c0420866e4 + status: 200 OK + code: 200 + duration: 38.268208ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -67,8 +118,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/8f62a86d-5564-4d78-954c-f0315bd690ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d method: GET response: proto: HTTP/2.0 @@ -76,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:23.989236Z","id":"8f62a86d-5564-4d78-954c-f0315bd690ad","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-28T10:05:23.989236Z"}' + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":true,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.285924Z"}' headers: Content-Length: - - "352" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,28 +148,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6804c6f3-daa4-4e29-96fa-fb52824e0301 + - 24b6a35f-81dd-4388-8e4a-01a957fe118f status: 200 OK code: 200 - duration: 32.498542ms - - id: 2 + duration: 40.118ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 156 + content_length: 197 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-focused-carson","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":null,"vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"name":"tf-pn-clever-easley","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","default_route_propagation_enabled":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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -127,20 +178,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1047 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:24.102467Z","dhcp_enabled":true,"id":"976eca82-ab1e-4cfb-9588-64d072652ebe","name":"tf-pn-focused-carson","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:24.102467Z","id":"0a580d1a-b290-4eb0-af66-eaab701cb213","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:24.102467Z","id":"e1299fc0-e957-4566-ae6e-53fa32aeb024","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2bd3::/64","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:18:57.465120Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"25cb1964-e885-462d-91d0-b96ffca708c3","name":"tf-pn-clever-easley","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.465120Z","id":"cb4e6354-3c7c-4796-887c-2ca3e98a2199","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:18:57.465120Z","id":"72ac27db-cbb3-4dcf-aae1-a0f1a23c1072","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8364::/64","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1047" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59aa02c4-0376-4ec6-932f-d54e791b2a56 + - f3937548-2a0e-4009-b7c1-19f492b78a77 status: 200 OK code: 200 - duration: 738.746875ms - - id: 3 + duration: 791.40625ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -167,8 +218,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/976eca82-ab1e-4cfb-9588-64d072652ebe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/25cb1964-e885-462d-91d0-b96ffca708c3 method: GET response: proto: HTTP/2.0 @@ -176,20 +227,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1047 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:24.102467Z","dhcp_enabled":true,"id":"976eca82-ab1e-4cfb-9588-64d072652ebe","name":"tf-pn-focused-carson","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:24.102467Z","id":"0a580d1a-b290-4eb0-af66-eaab701cb213","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:24.102467Z","id":"e1299fc0-e957-4566-ae6e-53fa32aeb024","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2bd3::/64","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:18:57.465120Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"25cb1964-e885-462d-91d0-b96ffca708c3","name":"tf-pn-clever-easley","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.465120Z","id":"cb4e6354-3c7c-4796-887c-2ca3e98a2199","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:18:57.465120Z","id":"72ac27db-cbb3-4dcf-aae1-a0f1a23c1072","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8364::/64","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1047" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:24 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 286d4f59-f339-4709-a845-d5869e29a8fa + - de09b984-1766-42d6-9849-13a2cdf8b44d status: 200 OK code: 200 - duration: 27.4445ms - - id: 4 + duration: 33.71975ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -216,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/vpc/v2/regions/fr-par/private-networks/976eca82-ab1e-4cfb-9588-64d072652ebe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/25cb1964-e885-462d-91d0-b96ffca708c3 method: GET response: proto: HTTP/2.0 @@ -225,20 +276,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1024 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:24.102467Z","dhcp_enabled":true,"id":"976eca82-ab1e-4cfb-9588-64d072652ebe","name":"tf-pn-focused-carson","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:24.102467Z","id":"0a580d1a-b290-4eb0-af66-eaab701cb213","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:24.102467Z","id":"e1299fc0-e957-4566-ae6e-53fa32aeb024","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2bd3::/64","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:18:57.465120Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"25cb1964-e885-462d-91d0-b96ffca708c3","name":"tf-pn-clever-easley","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.465120Z","id":"cb4e6354-3c7c-4796-887c-2ca3e98a2199","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:18:57.465120Z","id":"72ac27db-cbb3-4dcf-aae1-a0f1a23c1072","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8364::/64","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1024" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,11 +297,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e19ba050-1caa-4c02-9fdd-b64c1447ea72 + - 1d126930-2675-4f7c-a467-3ae92c89a6e7 status: 200 OK code: 200 - duration: 35.758458ms - - id: 5 + duration: 46.581667ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -265,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/vpcs/8f62a86d-5564-4d78-954c-f0315bd690ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d method: GET response: proto: HTTP/2.0 @@ -274,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:23.989236Z","id":"8f62a86d-5564-4d78-954c-f0315bd690ad","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-28T10:05:23.989236Z"}' + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":true,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.285924Z"}' headers: Content-Length: - - "352" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bfa80703-c2d3-4280-b671-7c675ccc3b90 + - dc853a2c-0206-43fd-818f-9e7b88c86860 status: 200 OK code: 200 - duration: 27.382917ms - - id: 6 + duration: 32.33675ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -314,8 +365,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/976eca82-ab1e-4cfb-9588-64d072652ebe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/25cb1964-e885-462d-91d0-b96ffca708c3 method: GET response: proto: HTTP/2.0 @@ -323,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1047 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:24.102467Z","dhcp_enabled":true,"id":"976eca82-ab1e-4cfb-9588-64d072652ebe","name":"tf-pn-focused-carson","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:24.102467Z","id":"0a580d1a-b290-4eb0-af66-eaab701cb213","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:24.102467Z","id":"e1299fc0-e957-4566-ae6e-53fa32aeb024","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2bd3::/64","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:18:57.465120Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"25cb1964-e885-462d-91d0-b96ffca708c3","name":"tf-pn-clever-easley","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.465120Z","id":"cb4e6354-3c7c-4796-887c-2ca3e98a2199","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:18:57.465120Z","id":"72ac27db-cbb3-4dcf-aae1-a0f1a23c1072","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8364::/64","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1047" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:25 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55adce50-4c3d-4b80-bd34-a975038fdea0 + - 02d3a602-146a-43ff-b39e-c36fcba9007f status: 200 OK code: 200 - duration: 32.955959ms - - id: 7 + duration: 39.605708ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -363,8 +414,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/8f62a86d-5564-4d78-954c-f0315bd690ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d method: GET response: proto: HTTP/2.0 @@ -372,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:23.989236Z","id":"8f62a86d-5564-4d78-954c-f0315bd690ad","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-28T10:05:23.989236Z"}' + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":true,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.285924Z"}' headers: Content-Length: - - "362" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e336f50d-498a-4646-9367-80d59244a165 + - f3568df8-ed0e-4fff-84e0-7285cc883729 status: 200 OK code: 200 - duration: 34.911083ms - - id: 8 + duration: 29.203ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -412,8 +463,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/976eca82-ab1e-4cfb-9588-64d072652ebe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/25cb1964-e885-462d-91d0-b96ffca708c3 method: GET response: proto: HTTP/2.0 @@ -421,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1024 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:24.102467Z","dhcp_enabled":true,"id":"976eca82-ab1e-4cfb-9588-64d072652ebe","name":"tf-pn-focused-carson","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:24.102467Z","id":"0a580d1a-b290-4eb0-af66-eaab701cb213","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.16.0/22","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:24.102467Z","id":"e1299fc0-e957-4566-ae6e-53fa32aeb024","private_network_id":"976eca82-ab1e-4cfb-9588-64d072652ebe","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd5f:519c:6d46:2bd3::/64","updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:24.102467Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:18:57.465120Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"25cb1964-e885-462d-91d0-b96ffca708c3","name":"tf-pn-clever-easley","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:57.465120Z","id":"cb4e6354-3c7c-4796-887c-2ca3e98a2199","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:18:57.465120Z","id":"72ac27db-cbb3-4dcf-aae1-a0f1a23c1072","private_network_id":"25cb1964-e885-462d-91d0-b96ffca708c3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:8364::/64","updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:18:57.465120Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1024" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:26 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19a0a55b-eaf1-429c-8175-70f8df457043 + - 6f2b3e2e-7811-49be-8872-efe0c9095803 status: 200 OK code: 200 - duration: 26.440583ms - - id: 9 + duration: 51.631ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -461,8 +512,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/976eca82-ab1e-4cfb-9588-64d072652ebe + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/25cb1964-e885-462d-91d0-b96ffca708c3 method: DELETE response: proto: HTTP/2.0 @@ -479,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:28 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,28 +540,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d13b40f-a995-4e6f-9766-cfebc64fed3c + - c474e4c8-e050-4eb5-9564-ddb4d229b295 status: 204 No Content code: 204 - duration: 1.165968459s - - id: 10 + duration: 2.18182925s + - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 204 + content_length: 235 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-xenodochial-northcutt","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"subnets":["172.16.32.0/22","fd46:78ab:30b8:177c::/64"],"vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"name":"tf-pn-keen-wiles","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22","fd46:78ab:30b8:177c::/64"],"vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","default_route_propagation_enabled":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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks method: POST response: @@ -519,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1031 + content_length: 1062 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:28.431407Z","dhcp_enabled":true,"id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","name":"tf-pn-xenodochial-northcutt","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:28.431407Z","id":"8fe8c1a1-a46d-4b74-8ccf-3b7dca7fba38","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:28.431407Z","id":"551e937a-7572-4115-a2d6-754dcdb1d4e9","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:19:01.142208Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","name":"tf-pn-keen-wiles","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:19:01.142208Z","id":"f6ce6f4d-9f0f-457d-acf6-88692785df24","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:19:01.142208Z","id":"9e6388ed-5a88-4094-82e3-632d58d3d063","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1031" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:29 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,11 +591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738b29da-3546-4742-9110-3fd8b4e1b20f + - 18233850-6592-468e-a748-fc3152c2995e status: 200 OK code: 200 - duration: 656.681791ms - - id: 11 + duration: 548.686166ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -559,8 +610,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/49639cc1-eea1-483b-a7c6-5a973a2eb19f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/48b34ed7-f73b-4b1c-b4cc-e387c6cf1011 method: GET response: proto: HTTP/2.0 @@ -568,20 +619,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1031 + content_length: 1062 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:28.431407Z","dhcp_enabled":true,"id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","name":"tf-pn-xenodochial-northcutt","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:28.431407Z","id":"8fe8c1a1-a46d-4b74-8ccf-3b7dca7fba38","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:28.431407Z","id":"551e937a-7572-4115-a2d6-754dcdb1d4e9","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:19:01.142208Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","name":"tf-pn-keen-wiles","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:19:01.142208Z","id":"f6ce6f4d-9f0f-457d-acf6-88692785df24","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:19:01.142208Z","id":"9e6388ed-5a88-4094-82e3-632d58d3d063","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1031" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:29 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,11 +640,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b805c5f-039c-49ae-bf9d-9e2c626af5d9 + - fbb46185-1da9-4ecd-b558-50281e3861c2 status: 200 OK code: 200 - duration: 38.437084ms - - id: 12 + duration: 24.822333ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -608,8 +659,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/49639cc1-eea1-483b-a7c6-5a973a2eb19f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/48b34ed7-f73b-4b1c-b4cc-e387c6cf1011 method: GET response: proto: HTTP/2.0 @@ -617,20 +668,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1031 + content_length: 1062 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:28.431407Z","dhcp_enabled":true,"id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","name":"tf-pn-xenodochial-northcutt","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:28.431407Z","id":"8fe8c1a1-a46d-4b74-8ccf-3b7dca7fba38","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:28.431407Z","id":"551e937a-7572-4115-a2d6-754dcdb1d4e9","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:19:01.142208Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","name":"tf-pn-keen-wiles","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:19:01.142208Z","id":"f6ce6f4d-9f0f-457d-acf6-88692785df24","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:19:01.142208Z","id":"9e6388ed-5a88-4094-82e3-632d58d3d063","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1031" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:29 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,11 +689,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 038a9a15-99b1-4bed-982e-855f48a1df1d + - ba29790f-9cf9-4d7c-91b7-deff2a774ccb status: 200 OK code: 200 - duration: 30.0475ms - - id: 13 + duration: 36.105792ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -657,8 +708,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/8f62a86d-5564-4d78-954c-f0315bd690ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d method: GET response: proto: HTTP/2.0 @@ -666,20 +717,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 362 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:23.989236Z","id":"8f62a86d-5564-4d78-954c-f0315bd690ad","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-28T10:05:23.989236Z"}' + body: '{"created_at":"2025-06-30T15:18:57.243697Z","custom_routes_propagation_enabled":true,"id":"7f3db7b8-77ac-4b50-8820-f56b27da527d","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-06-30T15:18:57.285924Z"}' headers: Content-Length: - - "362" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:29 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,11 +738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b8680eb9-c849-4520-be7c-227a6e1616ca + - cd7820f4-4b57-474b-bee2-830de77cb38d status: 200 OK code: 200 - duration: 33.094ms - - id: 14 + duration: 27.007917ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -706,8 +757,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/49639cc1-eea1-483b-a7c6-5a973a2eb19f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/48b34ed7-f73b-4b1c-b4cc-e387c6cf1011 method: GET response: proto: HTTP/2.0 @@ -715,20 +766,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1031 + content_length: 1062 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:28.431407Z","dhcp_enabled":true,"id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","name":"tf-pn-xenodochial-northcutt","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"fr-par","subnets":[{"created_at":"2025-01-28T10:05:28.431407Z","id":"8fe8c1a1-a46d-4b74-8ccf-3b7dca7fba38","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"172.16.32.0/22","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"},{"created_at":"2025-01-28T10:05:28.431407Z","id":"551e937a-7572-4115-a2d6-754dcdb1d4e9","private_network_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}],"tags":[],"updated_at":"2025-01-28T10:05:28.431407Z","vpc_id":"8f62a86d-5564-4d78-954c-f0315bd690ad"}' + body: '{"created_at":"2025-06-30T15:19:01.142208Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","name":"tf-pn-keen-wiles","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:19:01.142208Z","id":"f6ce6f4d-9f0f-457d-acf6-88692785df24","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"},{"created_at":"2025-06-30T15:19:01.142208Z","id":"9e6388ed-5a88-4094-82e3-632d58d3d063","private_network_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:177c::/64","updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}],"tags":[],"updated_at":"2025-06-30T15:19:01.142208Z","vpc_id":"7f3db7b8-77ac-4b50-8820-f56b27da527d"}' headers: Content-Length: - - "1031" + - "1062" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:29 GMT + - Mon, 30 Jun 2025 15:19:01 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,11 +787,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35ed0ae1-97a4-45cd-93fd-b51313bad9a6 + - 17571c8f-b2f3-48e9-94d3-38a7afdd60b5 status: 200 OK code: 200 - duration: 28.5435ms - - id: 15 + duration: 26.827958ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -755,8 +806,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/49639cc1-eea1-483b-a7c6-5a973a2eb19f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/48b34ed7-f73b-4b1c-b4cc-e387c6cf1011 method: DELETE response: proto: HTTP/2.0 @@ -773,9 +824,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:33 GMT + - Mon, 30 Jun 2025 15:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -783,11 +834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2959c2ac-9e45-4626-bdd4-3262e8020d56 + - 28df5218-2f7e-4555-92fc-9ff20a66f20f status: 204 No Content code: 204 - duration: 2.970489792s - - id: 16 + duration: 2.955123917s + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -802,8 +853,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8f62a86d-5564-4d78-954c-f0315bd690ad + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f3db7b8-77ac-4b50-8820-f56b27da527d method: DELETE response: proto: HTTP/2.0 @@ -820,9 +871,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:33 GMT + - Mon, 30 Jun 2025 15:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -830,11 +881,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6864c9d9-2a77-42f7-979b-3e422a07d11a + - d5a159e2-8bab-40da-bebc-4ace3670da45 status: 204 No Content code: 204 - duration: 65.758625ms - - id: 17 + duration: 128.434333ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -849,8 +900,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/49639cc1-eea1-483b-a7c6-5a973a2eb19f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/48b34ed7-f73b-4b1c-b4cc-e387c6cf1011 method: GET response: proto: HTTP/2.0 @@ -860,7 +911,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"49639cc1-eea1-483b-a7c6-5a973a2eb19f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"48b34ed7-f73b-4b1c-b4cc-e387c6cf1011","type":"not_found"}' headers: Content-Length: - "136" @@ -869,9 +920,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:33 GMT + - Mon, 30 Jun 2025 15:19:05 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -879,7 +930,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a76fb3f5-ec05-454e-9753-1c9c66c1ed1a + - a2698e70-de40-442c-9cea-61f05b86fd54 status: 404 Not Found code: 404 - duration: 25.192125ms + duration: 27.803292ms diff --git a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml index 36bc275fc0..de65147c6e 100644 --- a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-vpn","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.614040Z","custom_routes_propagation_enabled":false,"id":"8df62984-c242-4c42-83c3-8d5cfee718d4","is_default":false,"name":"tf-vpc-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:33:30.614040Z"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "409" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:30 GMT + - Mon, 30 Jun 2025 15:18:57 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,10 +48,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fff9febf-3a35-4ee0-b672-6a3e08fee998 + - 2e9939af-c46d-4e8c-bdbc-5ad17e12b1c9 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 200.462099ms + duration: 234.881167ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +69,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -76,22 +78,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38951 + content_length: 19730 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "38951" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:30 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Link: - - ; rel="next",; rel="last" + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,50 +101,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 490f6b9f-be6c-4070-a903-5bcd41c5faa3 + - 740f4876-1e1e-4ad6-90b4-d8ac88e53da4 X-Total-Count: - - "71" + - "75" status: 200 OK code: 200 - duration: 196.742148ms + duration: 50.700083ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-vpc-vpn","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8df62984-c242-4c42-83c3-8d5cfee718d4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 28 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.614040Z","custom_routes_propagation_enabled":false,"id":"8df62984-c242-4c42-83c3-8d5cfee718d4","is_default":false,"name":"tf-vpc-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:33:30.614040Z"}' + body: '{"message":"internal error"}' headers: Content-Length: - - "409" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:30 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,10 +154,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0c344ab-5fe6-4823-9623-94f2253b965e - status: 200 OK - code: 200 - duration: 76.939759ms + - 2aab304e-09ad-41e9-9a96-4291ba94329f + status: 500 Internal Server Error + code: 500 + duration: 349.199834ms - id: 3 request: proto: HTTP/1.1 @@ -169,8 +173,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -178,22 +182,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 16732 + content_length: 937 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "16732" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:30 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -201,50 +203,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a40798df-0fe1-4ca1-8808-2ec7aaa496d1 - X-Total-Count: - - "71" + - 3d163ea9-dc63-451d-bf52-a416601466bb status: 200 OK code: 200 - duration: 100.407108ms + duration: 85.572875ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 231 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1002 + content_length: 1688 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1002" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:30 GMT + - Mon, 30 Jun 2025 15:18:57 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -252,50 +256,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56c8cd68-ccb5-4da7-8386-6671627dcfc2 - status: 200 OK - code: 200 - duration: 123.570952ms + - cb41821b-0db9-482b-bcf4-3baf9ce9321f + status: 201 Created + code: 201 + duration: 622.96575ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 159 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-vpn","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1688 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.783214Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","name":"tf-pn-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:33:30.783214Z","id":"4eaead63-fd15-4c4e-b778-ddbb3c021730","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"},{"created_at":"2025-05-19T15:33:30.783214Z","id":"858a615f-53de-4fec-b260-e979e13489b3","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74b0::/64","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}],"tags":[],"updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1079" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:31 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -303,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 231442b8-94ec-42a9-9111-1f1040e2b2a5 + - 3da17e99-281d-44c9-a040-16a4bcf5d47b status: 200 OK code: 200 - duration: 589.177344ms + duration: 129.031542ms - id: 6 request: proto: HTTP/1.1 @@ -322,8 +324,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df47548c-cb20-47ce-95e5-0edca2fe5aec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -331,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1688 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.783214Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","name":"tf-pn-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:33:30.783214Z","id":"4eaead63-fd15-4c4e-b778-ddbb3c021730","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"},{"created_at":"2025-05-19T15:33:30.783214Z","id":"858a615f-53de-4fec-b260-e979e13489b3","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74b0::/64","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}],"tags":[],"updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1079" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:31 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -352,52 +354,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76ae413c-424b-4a99-8004-27b47432fc90 + - 51a390b0-4c29-4580-b142-9258653b3612 status: 200 OK code: 200 - duration: 25.843765ms + duration: 122.419208ms - id: 7 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 231 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 665 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:31.300392+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "1688" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:31 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -405,48 +403,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad395506-751d-438d-bf7a-75a724cb4754 - status: 201 Created - code: 201 - duration: 963.441242ms + - eeb863c0-9279-42e0-a867-8671137e6209 + status: 200 OK + code: 200 + duration: 47.43025ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:31.300392+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action","href_result":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3","id":"7a42db30-b4e8-4b65-bcf8-8380e7254baa","progress":0,"started_at":"2025-06-30T15:18:58.500768+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:31 GMT + - Mon, 30 Jun 2025 15:18:58 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7a42db30-b4e8-4b65-bcf8-8380e7254baa Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,10 +456,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c8c83311-e3c4-4682-bc69-9cc9d8c2cf19 - status: 200 OK - code: 200 - duration: 510.572323ms + - 489ade42-bf56-4dbe-9488-2162c87dfb8a + status: 202 Accepted + code: 202 + duration: 229.297709ms - id: 9 request: proto: HTTP/1.1 @@ -473,8 +475,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -482,20 +484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1710 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:31.300392+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:58.317583+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "1710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:32 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -503,48 +505,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a81cd292-6726-4d04-b041-aee52b37a1b1 + - 65be5446-d909-4f5e-9f31-32e1f8491f22 status: 200 OK code: 200 - duration: 510.34313ms + duration: 238.756959ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-vpc-vpn","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 398 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":false,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.382485Z"}' headers: Content-Length: - - "684" + - "398" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:32 GMT + - Mon, 30 Jun 2025 15:18:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -552,29 +556,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8767968-d917-4f34-b68b-5b40d4715bcd + - edf792e4-f768-4730-b387-e28dd8413240 status: 200 OK code: 200 - duration: 51.03185ms + duration: 57.640709ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -582,22 +586,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 397 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/action","href_result":"/servers/714fd499-1d66-4d42-8f4a-29aed5fae389","id":"901f50d2-97fa-406c-b824-7ab9bb121ddc","progress":0,"started_at":"2025-05-19T15:33:33.150963+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' headers: Content-Length: - - "357" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:33 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/901f50d2-97fa-406c-b824-7ab9bb121ddc + - Mon, 30 Jun 2025 15:18:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,10 +607,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7571f99a-9a8e-49b5-abee-64ec14502eca - status: 202 Accepted - code: 202 - duration: 459.030898ms + - 5e54dffd-3309-4844-8a6c-14e0492671b0 + status: 200 OK + code: 200 + duration: 50.05575ms - id: 12 request: proto: HTTP/1.1 @@ -624,8 +626,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 method: GET response: proto: HTTP/2.0 @@ -633,20 +635,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 397 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:32.942060+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' headers: Content-Length: - - "1710" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:33 GMT + - Mon, 30 Jun 2025 15:18:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -654,48 +656,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f1976a3-5441-4cb2-94c9-4c4cb9d59a21 + - a959f69f-79b7-4278-a194-d5bf3bf13eb8 status: 200 OK code: 200 - duration: 511.440357ms + duration: 25.772333ms - id: 13 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 201 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1055 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "1844" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:39 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,10 +707,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a7f6e11-1c75-4095-bd5d-2cafcf895551 + - 1df8aba0-d624-4494-99f9-c343ed7b559e status: 200 OK code: 200 - duration: 626.722852ms + duration: 552.638125ms - id: 14 request: proto: HTTP/1.1 @@ -722,8 +726,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd method: GET response: proto: HTTP/2.0 @@ -731,20 +735,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1055 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "1844" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:39 GMT + - Mon, 30 Jun 2025 15:19:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -752,10 +756,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b343163-b702-4531-a755-04a5ca18202e + - 412ebaf9-1208-4663-91de-6dd700d0f5e9 status: 200 OK code: 200 - duration: 511.72242ms + duration: 29.028584ms - id: 15 request: proto: HTTP/1.1 @@ -771,8 +775,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -780,20 +784,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1844 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","type":"not_found"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:40 GMT + - Mon, 30 Jun 2025 15:19:03 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -801,10 +805,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b055ab8d-d371-4398-9d04-ad2534228abc - status: 404 Not Found - code: 404 - duration: 37.02365ms + - 89232fb6-9c1b-4a47-9195-2cab160e81f8 + status: 200 OK + code: 200 + duration: 157.45125ms - id: 16 request: proto: HTTP/1.1 @@ -820,8 +824,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -829,20 +833,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 1844 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "684" + - "1844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:40 GMT + - Mon, 30 Jun 2025 15:19:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -850,10 +854,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77c83856-f462-4021-b8c8-6a0a8b7d4c03 + - 6d6acdf2-1b99-46eb-b113-959c554741db status: 200 OK code: 200 - duration: 56.406046ms + duration: 255.546708ms - id: 17 request: proto: HTTP/1.1 @@ -869,8 +873,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -878,20 +882,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:40 GMT + - Mon, 30 Jun 2025 15:19:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -899,10 +903,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f528e25-8c32-464a-b10e-c0319fdf1e27 - status: 200 OK - code: 200 - duration: 124.668118ms + - 9ab54c76-6127-4075-ab13-c6509049157b + status: 404 Not Found + code: 404 + duration: 31.043959ms - id: 18 request: proto: HTTP/1.1 @@ -918,8 +922,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -927,22 +931,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 665 uncompressed: false - body: '{"private_nics":[]}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "20" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:40 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:19:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -950,12 +952,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef3449f-c660-480d-959b-1bd5f3f9edc5 - X-Total-Count: - - "0" + - 4f573a22-9156-4a38-a9f3-c4c700e9b716 status: 200 OK code: 200 - duration: 59.971122ms + duration: 51.507916ms - id: 19 request: proto: HTTP/1.1 @@ -971,8 +971,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data method: GET response: proto: HTTP/2.0 @@ -980,20 +980,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 17 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "1844" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:40 GMT + - Mon, 30 Jun 2025 15:19:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,50 +1001,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e79185d-1ba8-4500-8c46-881d82b83ae2 + - 4eb09d14-6da0-4b9e-b708-fbfae5e7ed79 status: 200 OK code: 200 - duration: 216.988975ms + duration: 69.125833ms - id: 20 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 20 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "473" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:41 GMT + - Mon, 30 Jun 2025 15:19:04 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,10 +1052,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7d70f1b1-432c-43d2-bae6-ecb1fb84b187 - status: 201 Created - code: 201 - duration: 1.549474639s + - 2917e599-8947-40fb-bcdb-e6d1dd86c773 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 58.289959ms - id: 21 request: proto: HTTP/1.1 @@ -1071,8 +1073,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -1080,20 +1082,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1844 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:42 GMT + - Mon, 30 Jun 2025 15:19:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,28 +1103,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e515dce-9787-4a27-abe0-290e11827b13 + - 0a916362-fdb6-4cb8-a875-4e3c2159333a status: 200 OK code: 200 - duration: 72.962872ms + duration: 141.740417ms - id: 22 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1131,7 +1135,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1140,9 +1144,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:47 GMT + - Mon, 30 Jun 2025 15:19:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1150,10 +1154,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 894b456d-4418-4375-a133-998ed13583c2 - status: 200 OK - code: 200 - duration: 74.568539ms + - 721d9925-7e2d-495d-9c78-d442be5caf3a + status: 201 Created + code: 201 + duration: 4.604521708s - id: 23 request: proto: HTTP/1.1 @@ -1169,8 +1173,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1180,7 +1184,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1189,9 +1193,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:52 GMT + - Mon, 30 Jun 2025 15:19:09 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1199,10 +1203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f66bb3ca-d7ef-4a8f-b4c6-e87f10401290 + - 8f7538d4-3efd-45e4-b611-78e041e4c497 status: 200 OK code: 200 - duration: 68.057042ms + duration: 61.787583ms - id: 24 request: proto: HTTP/1.1 @@ -1218,8 +1222,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1229,7 +1233,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1238,9 +1242,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:33:57 GMT + - Mon, 30 Jun 2025 15:19:14 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1248,10 +1252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dffddaf0-1949-45d5-9d20-cc6a60af9cc2 + - b06de572-eea2-4880-80f3-fca863737ca5 status: 200 OK code: 200 - duration: 78.68862ms + duration: 69.613958ms - id: 25 request: proto: HTTP/1.1 @@ -1267,8 +1271,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1278,7 +1282,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1287,9 +1291,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:02 GMT + - Mon, 30 Jun 2025 15:19:19 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1297,10 +1301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6005d819-8b9d-4ad1-9294-2b3b07befaa6 + - 8a2d01b5-544e-4539-9330-5b502231e70a status: 200 OK code: 200 - duration: 70.884913ms + duration: 72.123541ms - id: 26 request: proto: HTTP/1.1 @@ -1316,8 +1320,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1327,7 +1331,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:33:40.720565+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1336,9 +1340,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:07 GMT + - Mon, 30 Jun 2025 15:19:24 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1346,10 +1350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87dc7609-e8fa-4bb2-a7db-b7da46535660 + - 4614a5d8-ad93-40d8-b038-75ed6553b3c9 status: 200 OK code: 200 - duration: 506.725264ms + duration: 62.535459ms - id: 27 request: proto: HTTP/1.1 @@ -1365,8 +1369,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1374,20 +1378,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:13 GMT + - Mon, 30 Jun 2025 15:19:29 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1395,10 +1399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be3a5558-6c6c-4994-9821-360d42754b1f + - 1ed77453-d519-4993-af57-876c1498e1f5 status: 200 OK code: 200 - duration: 84.246452ms + duration: 79.931ms - id: 28 request: proto: HTTP/1.1 @@ -1414,8 +1418,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1423,20 +1427,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:13 GMT + - Mon, 30 Jun 2025 15:19:34 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1444,10 +1448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c895eef6-0042-4dc9-9fff-66bf7127b1ca + - a12497d1-e737-4396-9c88-e02a3b55171f status: 200 OK code: 200 - duration: 67.235299ms + duration: 62.780083ms - id: 29 request: proto: HTTP/1.1 @@ -1463,8 +1467,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1472,20 +1476,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2302" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:13 GMT + - Mon, 30 Jun 2025 15:19:39 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1493,10 +1497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78523b05-a8e4-480b-abe2-3d3aa6701cf3 + - b342f829-1c29-4d8a-b910-e0a306598c05 status: 200 OK code: 200 - duration: 475.692284ms + duration: 61.93475ms - id: 30 request: proto: HTTP/1.1 @@ -1512,8 +1516,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -1521,20 +1525,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 475 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1056" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:13 GMT + - Mon, 30 Jun 2025 15:19:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1542,50 +1546,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e4fe299-45d2-4418-92c7-0986be5d1b82 + - fdb3c1c0-344d-417e-9717-11a4bb9acbd3 status: 200 OK code: 200 - duration: 46.395981ms + duration: 64.603708ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 189 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4","destination":"10.0.0.0/24","nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","region":"fr-par","tags":["tf","route"],"updated_at":"2025-05-19T15:34:13.777274Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "403" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:13 GMT + - Mon, 30 Jun 2025 15:19:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1593,10 +1595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b87d3aa-6fca-4f32-b5d2-181dae173ee7 + - 7e186205-c291-4817-8ea2-696d3b8c7472 status: 200 OK code: 200 - duration: 457.202244ms + duration: 63.776917ms - id: 32 request: proto: HTTP/1.1 @@ -1612,8 +1614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -1621,20 +1623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 2302 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","region":"fr-par","tags":["tf","route"],"updated_at":"2025-05-19T15:34:13.777274Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "403" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:14 GMT + - Mon, 30 Jun 2025 15:19:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1642,10 +1644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d9b4c8d-94e6-4de8-8663-651ec7fb0ec2 + - 9d74ea1e-b31e-486e-9300-d7a8b03f207e status: 200 OK code: 200 - duration: 28.855525ms + duration: 638.4425ms - id: 33 request: proto: HTTP/1.1 @@ -1661,8 +1663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1670,20 +1672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 1026 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","region":"fr-par","tags":["tf","route"],"updated_at":"2025-05-19T15:34:13.777274Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "403" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:14 GMT + - Mon, 30 Jun 2025 15:19:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1691,48 +1693,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a584495-2a3a-466e-8a47-1669d655f60f + - 0f2bae81-3178-489a-a817-22517f1a55f9 status: 200 OK code: 200 - duration: 26.177924ms + duration: 149.026375ms - id: 34 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 189 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44","destination":"10.0.0.0/24","nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8df62984-c242-4c42-83c3-8d5cfee718d4 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 392 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.614040Z","custom_routes_propagation_enabled":false,"id":"8df62984-c242-4c42-83c3-8d5cfee718d4","is_default":false,"name":"tf-vpc-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:33:30.614040Z"}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "409" + - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:14 GMT + - Mon, 30 Jun 2025 15:19:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1740,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f88e24fa-c400-4b90-8203-1894edb4ff22 + - e3e6f266-fac6-4baa-b1f9-be1f15745bc5 status: 200 OK code: 200 - duration: 33.758155ms + duration: 118.307208ms - id: 35 request: proto: HTTP/1.1 @@ -1759,8 +1763,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df47548c-cb20-47ce-95e5-0edca2fe5aec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -1768,20 +1772,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 392 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.783214Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","name":"tf-pn-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:33:30.783214Z","id":"4eaead63-fd15-4c4e-b778-ddbb3c021730","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"},{"created_at":"2025-05-19T15:33:30.783214Z","id":"858a615f-53de-4fec-b260-e979e13489b3","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74b0::/64","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}],"tags":[],"updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "1079" + - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1789,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2170f113-3598-4f70-aaac-3d09fe6200d0 + - 4bbaa20f-4ae3-4997-9f21-2d77060e121b status: 200 OK code: 200 - duration: 69.585666ms + duration: 34.684166ms - id: 36 request: proto: HTTP/1.1 @@ -1808,8 +1812,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -1817,20 +1821,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 392 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "2302" + - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:45 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1838,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee60bddd-70b3-4f8a-805d-e047aa113ae2 + - 1f50fd07-38cd-4a59-b71b-bcebaf6457df status: 200 OK code: 200 - duration: 188.725911ms + duration: 54.3095ms - id: 37 request: proto: HTTP/1.1 @@ -1857,8 +1861,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 method: GET response: proto: HTTP/2.0 @@ -1866,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 397 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","type":"not_found"}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' headers: Content-Length: - - "143" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1887,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45e0a07c-2c02-46f2-b621-8d542b4584e7 - status: 404 Not Found - code: 404 - duration: 87.33037ms + - 15d3d2f8-51e4-4f11-81c0-0781a0b9f4e1 + status: 200 OK + code: 200 + duration: 68.5045ms - id: 38 request: proto: HTTP/1.1 @@ -1906,8 +1910,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd method: GET response: proto: HTTP/2.0 @@ -1915,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "684" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1936,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 895b5799-e42d-4c1c-a0d8-0c157d1a6d9e + - 26ccec17-5640-4371-844a-78d2a37153ab status: 200 OK code: 200 - duration: 50.977971ms + duration: 22.524583ms - id: 39 request: proto: HTTP/1.1 @@ -1955,8 +1959,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -1964,20 +1968,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2302 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1985,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef300c7-2143-4ef1-b702-d3015f0ac07e + - 275ba0a4-ef8d-4d9e-bcb1-30c4da974b6a status: 200 OK code: 200 - duration: 59.906037ms + duration: 175.697542ms - id: 40 request: proto: HTTP/1.1 @@ -2004,8 +2008,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -2013,22 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,12 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b9fb7d71-fb58-4bd1-a905-dbf7ec955a7a - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 72.13112ms + - b70f0d2b-eec1-449c-afac-bd665e2a3f5f + status: 404 Not Found + code: 404 + duration: 29.531ms - id: 41 request: proto: HTTP/1.1 @@ -2057,8 +2057,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -2066,20 +2066,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 665 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "1056" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,10 +2087,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9361a509-2b10-4ae7-a794-17edc8394c31 + - 0eaf1469-0fd2-47dd-b7de-ba5512d72204 status: 200 OK code: 200 - duration: 30.499672ms + duration: 55.565458ms - id: 42 request: proto: HTTP/1.1 @@ -2106,8 +2106,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data method: GET response: proto: HTTP/2.0 @@ -2115,20 +2115,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "475" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,10 +2136,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 748e0687-68ac-41b5-9f04-e9b61340e3a9 + - 78cb2965-297d-4916-b284-ee22d112def8 status: 200 OK code: 200 - duration: 70.635184ms + duration: 72.743042ms - id: 43 request: proto: HTTP/1.1 @@ -2155,8 +2155,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics method: GET response: proto: HTTP/2.0 @@ -2164,20 +2164,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2302" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2185,10 +2187,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e670235a-77c2-4bcf-9772-1c064c5c0820 + - 6d450a60-14ad-482c-af34-b2f9006c9acc + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 411.509785ms + duration: 63.216916ms - id: 44 request: proto: HTTP/1.1 @@ -2204,8 +2208,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2213,20 +2217,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1056" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2234,10 +2238,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4e7e51d-f1e3-429c-864b-b25271207aa0 + - d0863e9c-8d8c-4b18-869f-4b296c749b25 status: 200 OK code: 200 - duration: 59.819825ms + duration: 33.487208ms - id: 45 request: proto: HTTP/1.1 @@ -2253,8 +2257,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -2262,20 +2266,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","region":"fr-par","tags":["tf","route"],"updated_at":"2025-05-19T15:34:13.777274Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "403" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:15 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2283,10 +2287,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dae0525b-3421-424e-ae29-a18ddb6e7262 + - d2a2b753-f135-44e2-bee1-9f935391e4de status: 200 OK code: 200 - duration: 36.512962ms + duration: 69.891625ms - id: 46 request: proto: HTTP/1.1 @@ -2302,8 +2306,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8df62984-c242-4c42-83c3-8d5cfee718d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -2311,20 +2315,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 2302 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.614040Z","custom_routes_propagation_enabled":false,"id":"8df62984-c242-4c42-83c3-8d5cfee718d4","is_default":false,"name":"tf-vpc-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:33:30.614040Z"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "409" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2332,10 +2336,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10b4e4d1-5131-4e14-a97d-804ab8ccecf1 + - b2747795-441d-41ec-94e7-ee521d3450cb status: 200 OK code: 200 - duration: 39.825687ms + duration: 147.052708ms - id: 47 request: proto: HTTP/1.1 @@ -2351,8 +2355,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df47548c-cb20-47ce-95e5-0edca2fe5aec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2360,20 +2364,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1026 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.783214Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","name":"tf-pn-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:33:30.783214Z","id":"4eaead63-fd15-4c4e-b778-ddbb3c021730","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"},{"created_at":"2025-05-19T15:33:30.783214Z","id":"858a615f-53de-4fec-b260-e979e13489b3","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74b0::/64","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}],"tags":[],"updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1079" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2381,10 +2385,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c75aafc-d153-4404-a0a4-c444df2732bb + - ee8b9f13-d0ca-4c01-a3b4-998569ecc536 status: 200 OK code: 200 - duration: 74.501421ms + duration: 60.305042ms - id: 48 request: proto: HTTP/1.1 @@ -2400,8 +2404,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -2409,20 +2413,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 403 + content_length: 392 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","region":"fr-par","tags":["tf","route"],"updated_at":"2025-05-19T15:34:13.777274Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "403" + - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:46 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2430,10 +2434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d51a2bfd-3fea-4d09-80f9-63de5ea3048b + - 65ba2903-3db1-4d19-a3f3-6c4eb18d0033 status: 200 OK code: 200 - duration: 25.575937ms + duration: 34.922083ms - id: 49 request: proto: HTTP/1.1 @@ -2449,8 +2453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 method: GET response: proto: HTTP/2.0 @@ -2458,20 +2462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 397 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' headers: Content-Length: - - "2302" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,10 +2483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de77d6ea-f0d7-4fec-bc5c-6c34c43bcf17 + - 9562f6c2-09c5-4364-9f12-65e7e2d85232 status: 200 OK code: 200 - duration: 197.372452ms + duration: 32.606417ms - id: 50 request: proto: HTTP/1.1 @@ -2498,8 +2502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd method: GET response: proto: HTTP/2.0 @@ -2507,20 +2511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1055 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","type":"not_found"}' + body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "143" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2528,10 +2532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f3e4129-02b6-40df-aea3-f93fea699817 - status: 404 Not Found - code: 404 - duration: 72.105903ms + - aff2aae3-01d2-479e-8684-2ac480fd7b0b + status: 200 OK + code: 200 + duration: 29.066791ms - id: 51 request: proto: HTTP/1.1 @@ -2547,8 +2551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -2556,20 +2560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 392 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "684" + - "392" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:16 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2577,10 +2581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59b5c039-d962-4187-b6f7-11a59a0af190 + - 84da29a2-f8a1-4e74-b06e-9377625f6f55 status: 200 OK code: 200 - duration: 43.388964ms + duration: 27.6455ms - id: 52 request: proto: HTTP/1.1 @@ -2596,8 +2600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -2605,20 +2609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2302 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2626,10 +2630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a702b43f-7306-4d6b-a4a5-fe813fea5334 + - 8d956294-2234-4366-b3a6-a84ff89a0937 status: 200 OK code: 200 - duration: 121.043898ms + duration: 157.094ms - id: 53 request: proto: HTTP/1.1 @@ -2645,8 +2649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -2654,22 +2658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,12 +2679,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35fafdcb-add1-4f8a-8bf7-f0960be3b53a - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 67.296122ms + - 1ca8aa5f-6400-4bd2-b36f-5b6f73b1a5bf + status: 404 Not Found + code: 404 + duration: 34.718875ms - id: 54 request: proto: HTTP/1.1 @@ -2698,8 +2698,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -2707,20 +2707,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 665 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "1056" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2728,10 +2728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cb2c757-fb7d-4ce2-ae9b-46e70165cdda + - 198acf64-5116-42fe-803e-aff4ccb00659 status: 200 OK code: 200 - duration: 30.60785ms + duration: 47.931292ms - id: 55 request: proto: HTTP/1.1 @@ -2747,8 +2747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data method: GET response: proto: HTTP/2.0 @@ -2756,20 +2756,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "475" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,10 +2777,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0667871-b4cd-48d0-9946-d935342a1703 + - e44debd9-646c-435c-900b-0c5a43d99bd2 status: 200 OK code: 200 - duration: 99.239656ms + duration: 78.683334ms - id: 56 request: proto: HTTP/1.1 @@ -2796,8 +2796,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics method: GET response: proto: HTTP/2.0 @@ -2805,20 +2805,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 478 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "2302" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT + - Mon, 30 Jun 2025 15:19:47 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2826,10 +2828,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87b88ddd-958c-4e91-885b-8d40eb26d21e + - 68a6823c-d424-4961-99d9-043f0f4181bd + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 453.628231ms + duration: 69.076209ms - id: 57 request: proto: HTTP/1.1 @@ -2845,8 +2849,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2854,20 +2858,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1056" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:17 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2875,10 +2879,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 244b3a50-2cae-4bfb-9766-3bf0d8ef198d + - 13b59241-8ed5-498c-9c6d-1ca14a0a2a28 status: 200 OK code: 200 - duration: 62.919897ms + duration: 26.205917ms - id: 58 request: proto: HTTP/1.1 @@ -2894,8 +2898,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -2903,22 +2907,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38951 + content_length: 475 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "38951" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:18 GMT - Link: - - ; rel="next",; rel="last" + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2926,12 +2928,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 144901a3-e386-4850-8431-07ea5f61b672 - X-Total-Count: - - "71" + - d6b92a06-4be9-4544-a23f-bbe11b64b35e status: 200 OK code: 200 - duration: 61.657536ms + duration: 86.092042ms - id: 59 request: proto: HTTP/1.1 @@ -2947,8 +2947,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -2956,22 +2956,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 16732 + content_length: 2302 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "16732" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:18 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2979,12 +2977,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abbfc4d1-8ccd-499f-897b-3fbd9e30c91f - X-Total-Count: - - "71" + - 306e6263-d53a-4bb8-90d6-3a89a7c8c425 status: 200 OK code: 200 - duration: 129.441378ms + duration: 152.917625ms - id: 60 request: proto: HTTP/1.1 @@ -3000,8 +2996,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3009,20 +3005,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1002 + content_length: 1026 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1002" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:18 GMT + - Mon, 30 Jun 2025 15:19:47 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3030,52 +3026,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8528944d-bca7-4da6-ac5e-bb1223ba58f2 + - b33b69d4-2dcf-4b2d-894f-c44e7afd7deb status: 200 OK code: 200 - duration: 79.250078ms + duration: 59.100458ms - id: 61 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 233 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 39208 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:18.984631+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "1692" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:19 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - Mon, 30 Jun 2025 15:19:48 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3083,10 +3077,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 890b638e-531c-4d28-a263-407948ba33bd - status: 201 Created - code: 201 - duration: 1.026548453s + - 66e9c87f-b674-4fe8-8db8-70d93e496179 + X-Total-Count: + - "75" + status: 200 OK + code: 200 + duration: 71.293917ms - id: 62 request: proto: HTTP/1.1 @@ -3102,8 +3098,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -3111,20 +3107,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:18.984631+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1692" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:19 GMT + - Mon, 30 Jun 2025 15:19:48 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3132,10 +3130,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bc0b8ba3-4dc8-4f63-842c-7a6dcd3c3929 + - 437c6445-6c5e-4b18-86a8-bec9b571793f + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 500.526503ms + duration: 56.8195ms - id: 63 request: proto: HTTP/1.1 @@ -3151,8 +3151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -3160,20 +3160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 937 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:18.984631+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1692" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:20 GMT + - Mon, 30 Jun 2025 15:19:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,48 +3181,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ddcc7f25-affd-49ec-8612-a519d611aa05 + - 8a0b93ac-e1c4-4220-abeb-3f3dd825d7e6 status: 200 OK code: 200 - duration: 510.076861ms + duration: 81.60425ms - id: 64 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 233 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-server-vpn-2","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 1692 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:19.094962Z","id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:34:19.094962Z","id":"8c7f629d-9274-4b5c-bfec-e2e203a719ba","product_resource_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:34:19.094962Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "684" + - "1692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:20 GMT + - Mon, 30 Jun 2025 15:19:48 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3230,52 +3234,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78344752-af02-4a33-a766-b10f726b58dc - status: 200 OK - code: 200 - duration: 57.671215ms + - 9002e6b4-8b92-47d1-85aa-334aecb39733 + status: 201 Created + code: 201 + duration: 819.796583ms - id: 65 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1692 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/action","href_result":"/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be","id":"aa46cf1f-d039-4255-9c2c-fa90a1a4b780","progress":0,"started_at":"2025-05-19T15:34:21.059010+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:21 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/aa46cf1f-d039-4255-9c2c-fa90a1a4b780 + - Mon, 30 Jun 2025 15:19:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,10 +3283,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d7df214-6e71-48cd-bf85-c87de7b6674a - status: 202 Accepted - code: 202 - duration: 452.966985ms + - 3f7d79ab-4d3e-49c7-a9c2-b331262569d1 + status: 200 OK + code: 200 + duration: 246.875917ms - id: 66 request: proto: HTTP/1.1 @@ -3302,8 +3302,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -3311,20 +3311,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1714 + content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:20.861524+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1714" + - "1692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:21 GMT + - Mon, 30 Jun 2025 15:19:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,10 +3332,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4ee3426-8cbb-4104-b4b6-c74c7b1dc2f0 + - cadf51b2-384b-48b9-96ea-326a3751fff3 status: 200 OK code: 200 - duration: 511.959952ms + duration: 116.988584ms - id: 67 request: proto: HTTP/1.1 @@ -3351,8 +3351,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -3360,20 +3360,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1849 + content_length: 665 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' headers: Content-Length: - - "1849" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:26 GMT + - Mon, 30 Jun 2025 15:19:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,48 +3381,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 917846c2-8e29-49e6-8f6c-341b59a959de + - aaa8605b-1f4b-4fcb-94de-a27097339b17 status: 200 OK code: 200 - duration: 625.181634ms + duration: 43.914833ms - id: 68 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1849 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action","href_result":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b","id":"372a4247-c027-4b9c-83f9-884c3197860b","progress":0,"started_at":"2025-06-30T15:19:49.812016+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1849" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:27 GMT + - Mon, 30 Jun 2025 15:19:49 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/372a4247-c027-4b9c-83f9-884c3197860b Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3430,10 +3434,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3a8cb42-7e6f-4a25-a115-ed4d48a9a930 - status: 200 OK - code: 200 - duration: 510.571273ms + - 8b59a6d9-ddaa-4d6a-a94f-5fd66cf41a6a + status: 202 Accepted + code: 202 + duration: 403.071667ms - id: 69 request: proto: HTTP/1.1 @@ -3449,8 +3453,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -3458,20 +3462,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1714 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:49.472228+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1714" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:27 GMT + - Mon, 30 Jun 2025 15:19:50 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3479,10 +3483,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a43df959-6782-47de-bdcb-8a54577b0f07 - status: 404 Not Found - code: 404 - duration: 36.51399ms + - 49edcb73-dc1a-4685-bfb0-4cc84b7fac2d + status: 200 OK + code: 200 + duration: 290.819459ms - id: 70 request: proto: HTTP/1.1 @@ -3498,8 +3502,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -3507,20 +3511,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 1848 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:19.094962Z","id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:34:19.094962Z","id":"8c7f629d-9274-4b5c-bfec-e2e203a719ba","product_resource_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:34:19.094962Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "684" + - "1848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:28 GMT + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3528,10 +3532,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 300f743d-1062-4e7a-a731-d0f223522f91 + - 3d398ce3-54f9-4d4a-85c3-838b21a2e2da status: 200 OK code: 200 - duration: 100.661871ms + duration: 155.085125ms - id: 71 request: proto: HTTP/1.1 @@ -3547,8 +3551,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -3556,20 +3560,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 1848 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "1848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:28 GMT + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3577,10 +3581,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b131bb97-ff34-4c33-8237-25df213c418a + - c716ac83-44e9-400a-80f1-1c15334a8528 status: 200 OK code: 200 - duration: 147.686081ms + duration: 129.081666ms - id: 72 request: proto: HTTP/1.1 @@ -3596,8 +3600,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -3605,22 +3609,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 143 uncompressed: false - body: '{"private_nics":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' headers: Content-Length: - - "20" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:28 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3628,12 +3630,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 888b1ecb-38f3-4358-bab3-753dd586504e - X-Total-Count: - - "0" - status: 200 OK - code: 200 - duration: 223.336952ms + - 52a53196-4c4b-49b8-b7ac-5589decd9058 + status: 404 Not Found + code: 404 + duration: 41.261ms - id: 73 request: proto: HTTP/1.1 @@ -3649,8 +3649,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -3658,20 +3658,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1849 + content_length: 665 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' headers: Content-Length: - - "1849" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:28 GMT + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3679,50 +3679,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 624b01ff-7b65-44ee-b0dd-b6f243a147d7 + - 11d82fd2-32a4-4869-a546-f9e790801692 status: 200 OK code: 200 - duration: 500.21872ms + duration: 47.698417ms - id: 74 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/user_data + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:30 GMT + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3730,10 +3728,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3c47ee2-b046-4e60-b11d-8072c4a3baf8 - status: 201 Created - code: 201 - duration: 1.534790794s + - 2a433538-f5f5-4111-a6e6-df7f26e97f9b + status: 200 OK + code: 200 + duration: 68.612333ms - id: 75 request: proto: HTTP/1.1 @@ -3749,8 +3747,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics method: GET response: proto: HTTP/2.0 @@ -3758,20 +3756,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 20 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "473" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:30 GMT + - Mon, 30 Jun 2025 15:19:55 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,10 +3779,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 129d38cf-631e-462a-a3c7-2deee348e719 + - e90b01dd-5875-4c98-bdf7-75e79a516fcf + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 63.928412ms + duration: 57.725917ms - id: 76 request: proto: HTTP/1.1 @@ -3798,8 +3800,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -3807,20 +3809,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1848 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:35 GMT + - Mon, 30 Jun 2025 15:19:55 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3828,28 +3830,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2abdfc0-55e2-4847-bcd2-42a10d06be4d + - 660d3dee-a0d8-4350-9cc9-148f87bfcc5e status: 200 OK code: 200 - duration: 88.928037ms + duration: 140.852ms - id: 77 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -3858,7 +3862,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3867,9 +3871,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:40 GMT + - Mon, 30 Jun 2025 15:20:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3877,10 +3881,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14e565d7-d4fd-4e3c-afda-9afad9c47e4d - status: 200 OK - code: 200 - duration: 68.201154ms + - ecc59a49-3004-4604-b897-2885d4a7eca9 + status: 201 Created + code: 201 + duration: 4.658867875s - id: 78 request: proto: HTTP/1.1 @@ -3896,8 +3900,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -3907,7 +3911,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3916,9 +3920,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:45 GMT + - Mon, 30 Jun 2025 15:20:00 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3926,10 +3930,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c109f4e2-fe55-46b0-be39-9288eaf82815 + - 93b54f12-1a95-43b3-89ba-516187345640 status: 200 OK code: 200 - duration: 118.621499ms + duration: 63.527208ms - id: 79 request: proto: HTTP/1.1 @@ -3945,8 +3949,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -3956,7 +3960,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3965,9 +3969,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:50 GMT + - Mon, 30 Jun 2025 15:20:05 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3975,10 +3979,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94ae69ff-b4f6-40d6-82c5-6606ce789a9b + - bcd778a7-d44e-4757-a82b-8a0c20fb279e status: 200 OK code: 200 - duration: 71.97206ms + duration: 107.9725ms - id: 80 request: proto: HTTP/1.1 @@ -3994,8 +3998,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4005,7 +4009,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:29.203914+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4014,9 +4018,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:34:56 GMT + - Mon, 30 Jun 2025 15:20:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4024,10 +4028,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e63b8af7-0ab8-468a-aa2e-98524071e397 + - 61d4e9cc-22a2-4c24-a95f-96d61997f9c2 status: 200 OK code: 200 - duration: 72.485229ms + duration: 61.118958ms - id: 81 request: proto: HTTP/1.1 @@ -4043,8 +4047,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4052,20 +4056,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:01 GMT + - Mon, 30 Jun 2025 15:20:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4073,10 +4077,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 806fb275-53ba-4a02-b195-41dd4b332baf + - 990f69f4-27cc-4267-9cf5-d90bfa097a72 status: 200 OK code: 200 - duration: 80.428589ms + duration: 82.709167ms - id: 82 request: proto: HTTP/1.1 @@ -4092,8 +4096,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4101,20 +4105,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:01 GMT + - Mon, 30 Jun 2025 15:20:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4122,10 +4126,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 360c63af-bc86-4583-8be0-e78580b15012 + - f77828e0-00ae-4099-a670-dddaf80735bc status: 200 OK code: 200 - duration: 93.556242ms + duration: 80.372542ms - id: 83 request: proto: HTTP/1.1 @@ -4141,8 +4145,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4150,20 +4154,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "2307" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:01 GMT + - Mon, 30 Jun 2025 15:20:25 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4171,10 +4175,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31a67b18-bff5-4e7c-bacc-1e4f3823ada0 + - 3cff360f-8efd-4839-9fec-9dfbb64797ea status: 200 OK code: 200 - duration: 546.059323ms + duration: 85.235625ms - id: 84 request: proto: HTTP/1.1 @@ -4190,8 +4194,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=5460e0af-988e-443b-9c3b-39daa71e1ce6&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4199,20 +4203,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:5ac2:534e:d37f:1640/64","created_at":"2025-05-19T15:34:29.827653Z","id":"ee6db599-5df5-4166-86db-5bbc43f9ff3c","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:34:29.827653Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-05-19T15:34:29.467306Z","id":"36b36c0d-bf6d-4bee-9c18-33a064510333","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:34:29.467306Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1060" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:01 GMT + - Mon, 30 Jun 2025 15:20:31 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4220,50 +4224,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cf146a4-3170-4c1e-9e94-95631c71dfbb + - 699d734b-94e0-449a-a101-1dd92caffadb status: 200 OK code: 200 - duration: 57.5216ms + duration: 145.284958ms - id: 85 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 131 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f - method: PATCH + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 473 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-05-19T15:35:01.947279Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:01 GMT + - Mon, 30 Jun 2025 15:20:36 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4271,10 +4273,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7aaa9a1-f228-4c5d-ab3c-5fd5a6f5f8a8 + - 6adcd653-6e2c-4ab3-9133-f8cb2983eb8d status: 200 OK code: 200 - duration: 437.18733ms + duration: 75.840542ms - id: 86 request: proto: HTTP/1.1 @@ -4290,8 +4292,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4299,20 +4301,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-05-19T15:35:01.947279Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:02 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4320,10 +4322,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16e504c7-186d-4927-b743-cb5f0bdb90bb + - d3df26a4-788f-4640-956c-6979c77aac5c status: 200 OK code: 200 - duration: 40.119757ms + duration: 57.922542ms - id: 87 request: proto: HTTP/1.1 @@ -4339,8 +4341,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -4348,20 +4350,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-05-19T15:35:01.947279Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:02 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4369,10 +4371,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7df6eec-b23c-4f10-b062-4d934114893d + - 8c2cc692-c813-4518-a684-67bb5aa9b2d1 status: 200 OK code: 200 - duration: 29.033845ms + duration: 142.875375ms - id: 88 request: proto: HTTP/1.1 @@ -4388,8 +4390,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8df62984-c242-4c42-83c3-8d5cfee718d4 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -4397,20 +4399,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 409 + content_length: 2306 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.614040Z","custom_routes_propagation_enabled":false,"id":"8df62984-c242-4c42-83c3-8d5cfee718d4","is_default":false,"name":"tf-vpc-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-19T15:33:30.614040Z"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "409" + - "2306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4418,10 +4420,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d04c976e-1955-4121-9f10-ce1a3b025fb8 + - 07638abb-20e9-4fae-a98f-5fc3f99353ae status: 200 OK code: 200 - duration: 43.170436ms + duration: 170.160083ms - id: 89 request: proto: HTTP/1.1 @@ -4437,8 +4439,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df47548c-cb20-47ce-95e5-0edca2fe5aec + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4446,20 +4448,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1079 + content_length: 1030 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:30.783214Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","name":"tf-pn-vpn","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-19T15:33:30.783214Z","id":"4eaead63-fd15-4c4e-b778-ddbb3c021730","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"},{"created_at":"2025-05-19T15:33:30.783214Z","id":"858a615f-53de-4fec-b260-e979e13489b3","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74b0::/64","updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}],"tags":[],"updated_at":"2025-05-19T15:33:30.783214Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1079" + - "1030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4467,48 +4469,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1aac961-154a-4f2b-b4b7-73ba9795d210 + - 751c9a63-5073-4d65-94ba-f54a16dab4e2 status: 200 OK code: 200 - duration: 80.222756ms + duration: 70.338334ms - id: 90 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 131 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + method: PATCH response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + content_length: 410 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "2307" + - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4516,10 +4520,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f563af8e-a917-4bc5-b6d7-cf35cb215ac6 + - 8189bec2-5380-469e-b689-75a87ea4cef1 status: 200 OK code: 200 - duration: 199.642254ms + duration: 93.478459ms - id: 91 request: proto: HTTP/1.1 @@ -4535,8 +4539,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -4544,20 +4548,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 410 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "2302" + - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4565,10 +4569,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12f5bbaa-6c8f-4884-ac29-9388df59d21f + - 33bc9476-0117-4efd-8f06-fd7664c0979e status: 200 OK code: 200 - duration: 217.61585ms + duration: 28.833708ms - id: 92 request: proto: HTTP/1.1 @@ -4584,8 +4588,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -4593,20 +4597,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 410 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","type":"not_found"}' + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "143" + - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:41 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4614,10 +4618,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d47ffab9-781d-4477-83a4-eca53e0cf2a8 - status: 404 Not Found - code: 404 - duration: 52.192886ms + - d483ff9d-7de0-4904-b582-d159b098ff3a + status: 200 OK + code: 200 + duration: 27.26825ms - id: 93 request: proto: HTTP/1.1 @@ -4633,8 +4637,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 method: GET response: proto: HTTP/2.0 @@ -4642,20 +4646,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 397 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","type":"not_found"}' + body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' headers: Content-Length: - - "143" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4663,10 +4667,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03ad559c-d166-4605-8e62-cc7fcd2a4a7e - status: 404 Not Found - code: 404 - duration: 82.483465ms + - 675c1a0c-55a1-48c9-b34e-ec9fa21c8d5b + status: 200 OK + code: 200 + duration: 32.5325ms - id: 94 request: proto: HTTP/1.1 @@ -4682,8 +4686,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd method: GET response: proto: HTTP/2.0 @@ -4691,20 +4695,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:19.094962Z","id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:34:19.094962Z","id":"8c7f629d-9274-4b5c-bfec-e2e203a719ba","product_resource_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:34:19.094962Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: Content-Length: - - "684" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4712,10 +4716,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6815eea1-6b38-45ae-a0fb-0120e824a49a + - 98fc9c51-e161-427b-be04-a1c17d09fee2 status: 200 OK code: 200 - duration: 100.838656ms + duration: 24.434875ms - id: 95 request: proto: HTTP/1.1 @@ -4731,8 +4735,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -4740,20 +4744,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 2302 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "684" + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4761,10 +4765,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f841fa1c-585c-4b35-aff1-3742e072190b + - 0f2f73f9-20fd-4087-811e-0ac7da177778 status: 200 OK code: 200 - duration: 96.814446ms + duration: 134.52025ms - id: 96 request: proto: HTTP/1.1 @@ -4780,8 +4784,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -4789,20 +4793,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 2306 uncompressed: false - body: '{"user_data":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "2306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4810,10 +4814,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b10d3401-d275-498f-b724-205013d0b914 + - 237102ec-6540-4aa1-a304-f12aa0504e1e status: 200 OK code: 200 - duration: 141.762208ms + duration: 162.768417ms - id: 97 request: proto: HTTP/1.1 @@ -4829,8 +4833,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -4838,20 +4842,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 143 uncompressed: false - body: '{"user_data":[]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' headers: Content-Length: - - "17" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4859,10 +4863,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 99979da1-8634-4363-91d6-d11f5d62d9a3 - status: 200 OK - code: 200 - duration: 148.20394ms + - 017ae5dd-24e6-41c7-8ab4-53fb9b2b8d1a + status: 404 Not Found + code: 404 + duration: 30.016292ms - id: 98 request: proto: HTTP/1.1 @@ -4878,8 +4882,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -4887,22 +4891,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 143 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' headers: Content-Length: - - "478" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4910,12 +4912,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d04bd8c-0ca3-448c-8ee1-3a29a12362a4 - X-Total-Count: - - "1" - status: 200 OK - code: 200 - duration: 88.173922ms + - 334a5f4d-697f-4960-8a0a-7eee66310ba6 + status: 404 Not Found + code: 404 + duration: 35.609958ms - id: 99 request: proto: HTTP/1.1 @@ -4931,8 +4931,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=5460e0af-988e-443b-9c3b-39daa71e1ce6&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -4940,20 +4940,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 665 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:5ac2:534e:d37f:1640/64","created_at":"2025-05-19T15:34:29.827653Z","id":"ee6db599-5df5-4166-86db-5bbc43f9ff3c","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:34:29.827653Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-05-19T15:34:29.467306Z","id":"36b36c0d-bf6d-4bee-9c18-33a064510333","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:34:29.467306Z","zone":null}],"total_count":2}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "1060" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4961,10 +4961,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5c37d87-bcc2-4b29-8989-5a682a2f6fa5 + - fd1420dc-2a33-4764-a9e0-9a7c13b34cf9 status: 200 OK code: 200 - duration: 29.390196ms + duration: 50.011583ms - id: 100 request: proto: HTTP/1.1 @@ -4980,8 +4980,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -4989,22 +4989,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 665 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' headers: Content-Length: - - "478" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5012,12 +5010,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08276eb3-1ad1-400e-a119-b253bc7f65c4 - X-Total-Count: - - "1" + - 05f41afe-d1fd-4c57-a9ed-3892d2cdd64f status: 200 OK code: 200 - duration: 84.10565ms + duration: 59.907375ms - id: 101 request: proto: HTTP/1.1 @@ -5033,8 +5029,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data method: GET response: proto: HTTP/2.0 @@ -5042,20 +5038,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "475" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5063,10 +5059,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbdbbbd9-a879-4140-b041-c1f452666c2e + - 0ff81d62-a0b8-4bb4-8134-7eeb06f891ca status: 200 OK code: 200 - duration: 62.633038ms + duration: 58.045ms - id: 102 request: proto: HTTP/1.1 @@ -5082,8 +5078,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/user_data method: GET response: proto: HTTP/2.0 @@ -5091,20 +5087,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 17 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"user_data":[]}' headers: Content-Length: - - "1056" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5112,10 +5108,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b751bade-6467-4b19-b87e-e6dccf9aff6a + - 20098e7c-a644-4d12-bcea-88dece989761 status: 200 OK code: 200 - duration: 80.332121ms + duration: 67.69025ms - id: 103 request: proto: HTTP/1.1 @@ -5131,8 +5127,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics method: GET response: proto: HTTP/2.0 @@ -5140,20 +5136,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 478 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "475" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5161,10 +5159,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c49ee07f-e5b0-4719-9273-5fc389c2c399 + - 7c90d5e4-1241-48b6-8e74-8532d2168e87 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 102.22027ms + duration: 63.5065ms - id: 104 request: proto: HTTP/1.1 @@ -5180,8 +5180,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5189,20 +5189,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2307 + content_length: 1026 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2307" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5210,10 +5210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 254395e9-630f-4f84-9da5-35d901cc2995 + - fe0c635b-3177-49c7-82d1-9b4a0fa20c1b status: 200 OK code: 200 - duration: 173.90359ms + duration: 40.175458ms - id: 105 request: proto: HTTP/1.1 @@ -5229,8 +5229,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=5460e0af-988e-443b-9c3b-39daa71e1ce6&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics method: GET response: proto: HTTP/2.0 @@ -5238,20 +5238,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1060 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:5ac2:534e:d37f:1640/64","created_at":"2025-05-19T15:34:29.827653Z","id":"ee6db599-5df5-4166-86db-5bbc43f9ff3c","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:34:29.827653Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-05-19T15:34:29.467306Z","id":"36b36c0d-bf6d-4bee-9c18-33a064510333","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","mac_address":"02:00:00:14:8B:B3","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:34:29.467306Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1060" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:03 GMT + - Mon, 30 Jun 2025 15:20:42 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5259,10 +5261,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ae15d6e-a5c3-4f73-8989-53df9ae78dcc + - bea4f625-140c-42f6-8920-ab0c0c28ed35 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 49.545022ms + duration: 62.662542ms - id: 106 request: proto: HTTP/1.1 @@ -5278,8 +5282,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5287,20 +5291,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2302 + content_length: 1030 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' headers: Content-Length: - - "2302" + - "1030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5308,10 +5312,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1219a6e0-b481-4ed7-ba08-12e4bbfe90e1 + - 206802af-4225-4450-8060-7206998844e6 status: 200 OK code: 200 - duration: 153.257943ms + duration: 30.264875ms - id: 107 request: proto: HTTP/1.1 @@ -5327,8 +5331,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -5336,20 +5340,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 422 + content_length: 475 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:13.777274Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"a398f845-b078-400e-90c9-f43efdebc00f","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-05-19T15:35:01.947279Z","vpc_id":"8df62984-c242-4c42-83c3-8d5cfee718d4"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "422" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5357,10 +5361,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 412c7d2e-4286-428e-b7f1-fc14c2e63f19 + - 5fa77582-df9c-4ff0-b891-a5a5dc766bd4 status: 200 OK code: 200 - duration: 66.293963ms + duration: 55.405959ms - id: 108 request: proto: HTTP/1.1 @@ -5376,8 +5380,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=df47548c-cb20-47ce-95e5-0edca2fe5aec&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=439b6596-1e12-4354-837a-3cad1faa2f26&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -5385,20 +5389,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1056 + content_length: 475 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74b0:fb4f:9d6c:ff5f:d258/64","created_at":"2025-05-19T15:33:41.402080Z","id":"eefeb02f-5485-4f36-97d0-a9903222300d","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"858a615f-53de-4fec-b260-e979e13489b3"},"tags":[],"updated_at":"2025-05-19T15:33:41.402080Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-05-19T15:33:40.990174Z","id":"18adab23-17ca-4f24-8a87-813596c29c05","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"439b6596-1e12-4354-837a-3cad1faa2f26","mac_address":"02:00:00:15:02:75","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4eaead63-fd15-4c4e-b778-ddbb3c021730"},"tags":[],"updated_at":"2025-05-19T15:33:40.990174Z","zone":null}],"total_count":2}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1056" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5406,10 +5410,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00bfe132-b075-4aa7-94b3-cb2a18234d12 + - e0130ee8-9692-4fc6-8e4c-24613ebaf4ba status: 200 OK code: 200 - duration: 55.123497ms + duration: 60.148375ms - id: 109 request: proto: HTTP/1.1 @@ -5425,27 +5429,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 2302 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "2302" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5453,10 +5459,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cc414fcb-1b9e-4955-961c-087b45020445 - status: 204 No Content - code: 204 - duration: 70.0235ms + - 187eedfa-5a95-4973-aeeb-cecaf94b342e + status: 200 OK + code: 200 + duration: 153.370458ms - id: 110 request: proto: HTTP/1.1 @@ -5472,8 +5478,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -5481,20 +5487,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2306 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:33:40.565118+00:00","id":"439b6596-1e12-4354-837a-3cad1faa2f26","ipam_ip_ids":["18adab23-17ca-4f24-8a87-813596c29c05","eefeb02f-5485-4f36-97d0-a9903222300d"],"mac_address":"02:00:00:15:02:75","modification_date":"2025-05-19T15:34:10.443094+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2306" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5502,10 +5508,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cf57f46-03c7-4bd2-8ebe-e0b76ac5ea35 + - 7597ebcb-03e4-4d48-8812-876a88762731 status: 200 OK code: 200 - duration: 101.90606ms + duration: 159.578166ms - id: 111 request: proto: HTTP/1.1 @@ -5521,8 +5527,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5530,20 +5536,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 1026 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-19T15:34:29.001611+00:00","id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","ipam_ip_ids":["36b36c0d-bf6d-4bee-9c18-33a064510333","ee6db599-5df5-4166-86db-5bbc43f9ff3c"],"mac_address":"02:00:00:14:8b:b3","modification_date":"2025-05-19T15:34:56.508554+00:00","private_network_id":"df47548c-cb20-47ce-95e5-0edca2fe5aec","server_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' headers: Content-Length: - - "475" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:04 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5551,10 +5557,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f27ae8ed-8ed0-40c0-ab03-335de46ea9a8 + - 5fb74a17-ed8a-4cc8-a388-493a264975e9 status: 200 OK code: 200 - duration: 95.56607ms + duration: 42.574959ms - id: 112 request: proto: HTTP/1.1 @@ -5570,27 +5576,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1030 uncompressed: false - body: "" + body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' headers: + Content-Length: + - "1030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:05 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5598,10 +5606,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a233fd4-d510-4cd3-9ea6-a6f629480e60 - status: 204 No Content - code: 204 - duration: 723.246206ms + - 8361f583-c439-495f-bfe3-32920bae0c67 + status: 200 OK + code: 200 + duration: 51.650166ms - id: 113 request: proto: HTTP/1.1 @@ -5617,27 +5625,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 410 uncompressed: false - body: "" + body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' headers: + Content-Length: + - "410" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:05 GMT + - Mon, 30 Jun 2025 15:20:42 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5645,10 +5655,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c913ead9-449a-43c9-a4c7-631ac2640d2d - status: 204 No Content - code: 204 - duration: 651.863203ms + - d420ba63-a7fc-4184-8b7a-970a183b82d5 + status: 200 OK + code: 200 + duration: 30.308791ms - id: 114 request: proto: HTTP/1.1 @@ -5664,8 +5674,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/private_nics/439b6596-1e12-4354-837a-3cad1faa2f26 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -5673,20 +5683,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 475 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"439b6596-1e12-4354-837a-3cad1faa2f26","type":"not_found"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "148" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:05 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5694,10 +5704,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 634dab13-1bdf-485d-b098-825844fd2d4c - status: 404 Not Found - code: 404 - duration: 256.859558ms + - 1c5d70fd-cd0a-4801-a9ef-e7220ea1b9e6 + status: 200 OK + code: 200 + duration: 58.841417ms - id: 115 request: proto: HTTP/1.1 @@ -5713,29 +5723,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/private_nics/5460e0af-988e-443b-9c3b-39daa71e1ce6 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 148 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"5460e0af-988e-443b-9c3b-39daa71e1ce6","type":"not_found"}' + body: "" headers: - Content-Length: - - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:05 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5743,10 +5751,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14a3d00d-bec9-455f-ab19-8f262b34a1d8 - status: 404 Not Found - code: 404 - duration: 256.378549ms + - c6f225e1-5a81-4eed-9199-33d70de51c48 + status: 204 No Content + code: 204 + duration: 68.244875ms - id: 116 request: proto: HTTP/1.1 @@ -5762,8 +5770,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea method: GET response: proto: HTTP/2.0 @@ -5771,20 +5779,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 475 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:33:36.197872+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5792,10 +5800,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 631cd140-6e0a-49c8-9939-77041d99d332 + - 6822803d-fba6-4817-99af-b572ae375c6d status: 200 OK code: 200 - duration: 301.716481ms + duration: 84.288083ms - id: 117 request: proto: HTTP/1.1 @@ -5811,29 +5819,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 0 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:33:31.427263Z","id":"caa2d5cd-b97c-45b9-8d7e-de59a1c45f20","product_resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:33:31.427263Z","zone":"fr-par-1"}' + body: "" headers: - Content-Length: - - "684" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5841,10 +5847,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 984efa66-98a2-49fc-81bd-caa0310c069c - status: 200 OK - code: 200 - duration: 47.3796ms + - 0f064a8d-e86f-4c76-a25f-85c8839767de + status: 204 No Content + code: 204 + duration: 501.312209ms - id: 118 request: proto: HTTP/1.1 @@ -5860,29 +5866,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1849 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:34:24.569727+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1849" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5890,10 +5894,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50e35736-0d61-4550-8091-0dc0be5c27da - status: 200 OK - code: 200 - duration: 408.017267ms + - c08b8d46-d3c8-4d5f-8f74-f9125cf8dd6e + status: 204 No Content + code: 204 + duration: 400.8385ms - id: 119 request: proto: HTTP/1.1 @@ -5909,8 +5913,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a method: GET response: proto: HTTP/2.0 @@ -5918,20 +5922,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 684 + content_length: 148 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:19.094962Z","id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-19T15:34:19.094962Z","id":"8c7f629d-9274-4b5c-bfec-e2e203a719ba","product_resource_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:34:19.094962Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","type":"not_found"}' headers: Content-Length: - - "684" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5939,52 +5943,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - acc5ae50-5b1e-4548-930d-a911d23e0ae2 - status: 200 OK - code: 200 - duration: 46.765281ms + - 9708677e-357f-4d39-a9e4-ef59b98253de + status: 404 Not Found + code: 404 + duration: 72.680625ms - id: 120 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 148 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/714fd499-1d66-4d42-8f4a-29aed5fae389/action","href_result":"/servers/714fd499-1d66-4d42-8f4a-29aed5fae389","id":"c15379fd-5ac2-4d1c-9d20-7d22ec76fb65","progress":0,"started_at":"2025-05-19T15:35:06.791747+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","type":"not_found"}' headers: Content-Length: - - "352" + - "148" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/c15379fd-5ac2-4d1c-9d20-7d22ec76fb65 + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5992,52 +5992,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4543bbd-ed69-449c-b8bf-9bad1fbf3367 - status: 202 Accepted - code: 202 - duration: 932.050711ms + - 993955b7-8a81-4e5b-b78a-a8cabc929f37 + status: 404 Not Found + code: 404 + duration: 75.472833ms - id: 121 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 21 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweroff"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/action - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 352 + content_length: 1848 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be/action","href_result":"/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be","id":"bb0f58f7-7f7a-442c-b736-34c2cc3d330f","progress":0,"started_at":"2025-05-19T15:35:06.803288+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "352" + - "1848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:06 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/bb0f58f7-7f7a-442c-b736-34c2cc3d330f + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6045,10 +6041,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 21e91eb6-6623-4a63-86d9-c2ac0407b260 - status: 202 Accepted - code: 202 - duration: 826.773931ms + - 8cbe7ffc-0976-471a-8abe-c53e5ef4d123 + status: 200 OK + code: 200 + duration: 141.185167ms - id: 122 request: proto: HTTP/1.1 @@ -6064,27 +6060,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/df47548c-cb20-47ce-95e5-0edca2fe5aec - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1844 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:07 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6092,10 +6090,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47f6ccf9-dafa-4075-b94f-d153fa98f669 - status: 204 No Content - code: 204 - duration: 1.299284561s + - 22674d28-2d5c-4e23-93a9-9b8bedfa030e + status: 200 OK + code: 200 + duration: 147.900583ms - id: 123 request: proto: HTTP/1.1 @@ -6111,27 +6109,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/8df62984-c242-4c42-83c3-8d5cfee718d4 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 665 uncompressed: false - body: "" + body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' headers: + Content-Length: + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:07 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6139,10 +6139,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11e005a0-6029-4a8f-965c-106ed93f78d4 - status: 204 No Content - code: 204 - duration: 98.377294ms + - 061427d9-73a6-4c1a-b7f8-72d6313ad82d + status: 200 OK + code: 200 + duration: 47.873208ms - id: 124 request: proto: HTTP/1.1 @@ -6158,8 +6158,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 method: GET response: proto: HTTP/2.0 @@ -6167,20 +6167,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 665 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' headers: Content-Length: - - "1804" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:07 GMT + - Mon, 30 Jun 2025 15:20:43 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6188,48 +6188,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50605ac6-2e87-44fe-a5fd-2dab23f345f5 + - 9a8738ba-9e3d-42ab-a02d-62f1df68fbb7 status: 200 OK code: 200 - duration: 209.795977ms + duration: 52.801958ms - id: 125 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 352 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action","href_result":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b","id":"fcaefc1b-1a56-4ddc-9c67-636d7f84024b","progress":0,"started_at":"2025-06-30T15:20:44.056815+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1809" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:07 GMT + - Mon, 30 Jun 2025 15:20:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fcaefc1b-1a56-4ddc-9c67-636d7f84024b Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6237,48 +6241,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97eda3df-03b5-4b0f-9b34-26a5f6b3f822 - status: 200 OK - code: 200 - duration: 224.902887ms + - 161018be-3c63-439d-bf3e-446d805c6ec1 + status: 202 Accepted + code: 202 + duration: 225.134875ms - id: 126 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 21 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweroff"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 352 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action","href_result":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3","id":"26988ca0-58eb-47d7-bda2-2da64add95cc","progress":0,"started_at":"2025-06-30T15:20:44.058840+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1804" + - "352" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:12 GMT + - Mon, 30 Jun 2025 15:20:44 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/26988ca0-58eb-47d7-bda2-2da64add95cc Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6286,10 +6294,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e935288d-05d2-4db5-9bfa-bf85764c903c - status: 200 OK - code: 200 - duration: 399.173167ms + - 91b11f57-be49-4327-b2fd-3fbea6b28cca + status: 202 Accepted + code: 202 + duration: 219.252667ms - id: 127 request: proto: HTTP/1.1 @@ -6305,8 +6313,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6314,20 +6322,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1809" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:12 GMT + - Mon, 30 Jun 2025 15:20:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6335,10 +6343,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 41827f07-aa9e-491b-91b3-f860004fa435 + - 6b80c0da-70cb-48d7-b004-8b7d7fa5819a status: 200 OK code: 200 - duration: 388.809849ms + duration: 144.294917ms - id: 128 request: proto: HTTP/1.1 @@ -6354,8 +6362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -6363,20 +6371,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1809" + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:17 GMT + - Mon, 30 Jun 2025 15:20:44 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6384,10 +6392,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 352f3b61-c4fe-46ef-a044-2840a7d92d28 + - 506c6a36-8266-46de-a44d-773f1283886c status: 200 OK code: 200 - duration: 629.254333ms + duration: 145.369792ms - id: 129 request: proto: HTTP/1.1 @@ -6403,29 +6411,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 28 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"internal error"}' headers: Content-Length: - - "1804" + - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:17 GMT + - Mon, 30 Jun 2025 15:20:48 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6433,10 +6441,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c40e879-d129-4427-83f3-faeb5c254579 - status: 200 OK - code: 200 - duration: 629.448606ms + - aaf06dec-bf57-4376-beba-a3e63a7d8195 + status: 500 Internal Server Error + code: 500 + duration: 5.095397875s - id: 130 request: proto: HTTP/1.1 @@ -6452,8 +6460,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -6463,7 +6471,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -6472,9 +6480,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:23 GMT + - Mon, 30 Jun 2025 15:20:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6482,10 +6490,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - face2660-54f4-453d-8893-2bb0b0faba74 + - fbcfa2f4-f186-467f-998e-4fbc516a5d76 status: 200 OK code: 200 - duration: 627.414274ms + duration: 237.869667ms - id: 131 request: proto: HTTP/1.1 @@ -6501,8 +6509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6510,20 +6518,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1809" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:23 GMT + - Mon, 30 Jun 2025 15:20:49 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6531,10 +6539,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa4d74e5-6442-4ace-b484-3bfd284a71f2 + - 6836d96b-e93e-4458-a576-027d6a3c583f status: 200 OK code: 200 - duration: 627.957728ms + duration: 237.710125ms - id: 132 request: proto: HTTP/1.1 @@ -6550,29 +6558,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1809" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:29 GMT + - Mon, 30 Jun 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6580,10 +6586,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0a6494c-7177-49d9-8d95-e4f979754470 - status: 200 OK - code: 200 - duration: 626.628496ms + - 9c7758db-1ec1-43a6-87c4-106d50a860c3 + status: 204 No Content + code: 204 + duration: 1.900680084s - id: 133 request: proto: HTTP/1.1 @@ -6599,29 +6605,27 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 0 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:29 GMT + - Mon, 30 Jun 2025 15:20:52 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6629,10 +6633,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ffe4a2ca-991d-4881-845a-9eaffbdaef5f - status: 200 OK - code: 200 - duration: 626.440465ms + - 7ef4f919-e036-4ef1-97f8-70982dddcd4c + status: 204 No Content + code: 204 + duration: 110.961667ms - id: 134 request: proto: HTTP/1.1 @@ -6648,8 +6652,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6657,20 +6661,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1809 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"701","node_id":"103","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:06.437182+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1809" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:34 GMT + - Mon, 30 Jun 2025 15:20:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6678,10 +6682,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 357384dc-abc4-4a56-9eaa-b47fd964eca1 + - de5eeb77-ee56-456d-8d52-740b8ebbb7b8 status: 200 OK code: 200 - duration: 631.02355ms + duration: 153.730417ms - id: 135 request: proto: HTTP/1.1 @@ -6697,8 +6701,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -6708,7 +6712,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -6717,9 +6721,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:34 GMT + - Mon, 30 Jun 2025 15:20:54 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6727,10 +6731,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f84f799-cd9e-4081-b082-d6c40f5a1990 + - a31d4069-f25f-45b1-967b-ad55e3cd62a8 status: 200 OK code: 200 - duration: 630.895149ms + duration: 161.698167ms - id: 136 request: proto: HTTP/1.1 @@ -6746,8 +6750,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -6755,20 +6759,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:40.230467+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:40 GMT + - Mon, 30 Jun 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6776,10 +6780,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 47496f57-7240-4927-8b5f-211b3949d53b + - cfafd238-2ed2-4c1b-9341-3154d8bfacd4 status: 200 OK code: 200 - duration: 627.144454ms + duration: 147.625417ms - id: 137 request: proto: HTTP/1.1 @@ -6795,8 +6799,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6804,20 +6808,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"92","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:06.435370+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1804" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:40 GMT + - Mon, 30 Jun 2025 15:20:59 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6825,10 +6829,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae7ec4fc-c49c-40d3-9c9f-7fad83aab0cb + - 8d74ebba-10c9-4d37-a3eb-c2111c161abc status: 200 OK code: 200 - duration: 627.29245ms + duration: 158.988167ms - id: 138 request: proto: HTTP/1.1 @@ -6844,8 +6848,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6853,20 +6857,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:34:18.984631+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:45","maintenances":[],"modification_date":"2025-05-19T15:35:40.230467+00:00","name":"tf-server-vpn-2","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:41 GMT + - Mon, 30 Jun 2025 15:21:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6874,10 +6878,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c490b6de-3254-4ab8-9b1f-0163d06e60eb + - 3c08fc5d-bee7-466b-a0f7-f6b4530c83be status: 200 OK code: 200 - duration: 509.313482ms + duration: 139.737708ms - id: 139 request: proto: HTTP/1.1 @@ -6893,27 +6897,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1804 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:41 GMT + - Mon, 30 Jun 2025 15:21:04 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6921,11 +6927,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e4bf4ad-bb97-487c-b0f8-5db812476f86 - status: 204 No Content - code: 204 - duration: 511.503396ms - - id: 140 + - 55a01f73-58d3-4622-8368-b321064532c3 + status: 200 OK + code: 200 + duration: 162.268333ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6940,8 +6946,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/0b67267b-0dbf-4539-8f6e-09f26e00a1be + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -6949,20 +6955,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1808 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"0b67267b-0dbf-4539-8f6e-09f26e00a1be","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:42 GMT + - Mon, 30 Jun 2025 15:21:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6970,10 +6976,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 57abe66a-f281-4ea0-b58b-7afa61ce5490 - status: 404 Not Found - code: 404 - duration: 136.464908ms + - 066cf380-f5a9-4b32-81e5-ed46fed235cc + status: 200 OK + code: 200 + duration: 164.710083ms - id: 141 request: proto: HTTP/1.1 @@ -6989,8 +6995,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -6998,20 +7004,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 1804 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","type":"not_found"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "143" + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:42 GMT + - Mon, 30 Jun 2025 15:21:10 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7019,10 +7025,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8328e9a3-e170-4498-844d-a7bf678642d4 - status: 404 Not Found - code: 404 - duration: 87.000839ms + - dfd38600-b82e-4f8b-b0cd-ca03e051ce41 + status: 200 OK + code: 200 + duration: 180.295875ms - id: 142 request: proto: HTTP/1.1 @@ -7038,8 +7044,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -7047,20 +7053,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 1808 uncompressed: false - body: '{"created_at":"2025-05-19T15:34:19.094962Z","id":"c29d9ac1-82b5-49c6-8d0d-c391a792a827","last_detached_at":"2025-05-19T15:35:41.829813Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:35:41.829813Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "477" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:42 GMT + - Mon, 30 Jun 2025 15:21:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7068,10 +7074,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8ad112dc-67e4-4b71-9dd9-74b07a82c1a3 + - 78005d75-b31c-4aa5-a3df-fb091524a063 status: 200 OK code: 200 - duration: 49.226236ms + duration: 155.603458ms - id: 143 request: proto: HTTP/1.1 @@ -7087,27 +7093,29 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/c29d9ac1-82b5-49c6-8d0d-c391a792a827 - method: DELETE + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1804 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:42 GMT + - Mon, 30 Jun 2025 15:21:15 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7115,10 +7123,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70c0598e-574d-4a6e-af30-3989afdae3ff - status: 204 No Content - code: 204 - duration: 72.800355ms + - 1502f448-e674-4841-b8e0-b6634768aa76 + status: 200 OK + code: 200 + duration: 159.916292ms - id: 144 request: proto: HTTP/1.1 @@ -7134,8 +7142,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -7143,20 +7151,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:40.436142+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:21:17.915143+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1688" + - "1692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:46 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7164,10 +7172,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 083b16bd-083a-44f3-9125-a5bae7c4fe44 + - 869e5210-bb5d-43c2-877c-9ecec161dd88 status: 200 OK code: 200 - duration: 223.541867ms + duration: 145.744625ms - id: 145 request: proto: HTTP/1.1 @@ -7183,8 +7191,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -7194,7 +7202,7 @@ interactions: trailer: {} content_length: 1688 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-05-19T15:33:31.300392+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"714fd499-1d66-4d42-8f4a-29aed5fae389","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:af:45:37","maintenances":[],"modification_date":"2025-05-19T15:35:40.436142+00:00","name":"tf-server-vpn","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:21:17.687132+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1688" @@ -7203,9 +7211,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:46 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7213,10 +7221,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b81c70d7-d40b-4d9b-960a-7a750baa11b9 + - 93128a38-4438-4e3a-b6b0-cf7a8dcc0df2 status: 200 OK code: 200 - duration: 178.640959ms + duration: 148.408291ms - id: 146 request: proto: HTTP/1.1 @@ -7232,8 +7240,106 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1692 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:21:17.915143+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1692" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 06107bcd-47b6-4cd0-b5d1-e7d4170cf72c + status: 200 OK + code: 200 + duration: 135.227958ms + - id: 147 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1688 + uncompressed: false + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:21:17.687132+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1688" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fbcd8c1a-2778-4755-9492-ea070081acbd + status: 200 OK + code: 200 + duration: 140.116583ms + - id: 148 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: DELETE response: proto: HTTP/2.0 @@ -7250,9 +7356,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:46 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7260,11 +7366,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6027772-691c-4b0c-b6de-013a4aa31462 + - 944943c1-06d7-4ab1-b672-c5be01813e6d status: 204 No Content code: 204 - duration: 737.864122ms - - id: 147 + duration: 209.960083ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -7279,8 +7385,55 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/714fd499-1d66-4d42-8f4a-29aed5fae389 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:20 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b6d96e59-5c05-455a-8a90-3ad0b47bbccb + status: 204 No Content + code: 204 + duration: 225.230458ms + - id: 150 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b method: GET response: proto: HTTP/2.0 @@ -7290,7 +7443,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"714fd499-1d66-4d42-8f4a-29aed5fae389","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","type":"not_found"}' headers: Content-Length: - "143" @@ -7299,9 +7452,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:47 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7309,11 +7462,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f298d992-21e2-488f-b19a-5bf1d73ffac7 + - e0b1145b-7ab8-438c-80ea-4a9131a4d60b status: 404 Not Found code: 404 - duration: 108.651132ms - - id: 148 + duration: 132.47575ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -7328,8 +7481,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: GET response: proto: HTTP/2.0 @@ -7339,7 +7492,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' headers: Content-Length: - "143" @@ -7348,9 +7501,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:47 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7358,11 +7511,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9878247-a01e-4fb3-af99-768b8e263243 + - 2e9b006e-4ad4-49e3-930c-d212f1f13913 status: 404 Not Found code: 404 - duration: 40.259284ms - - id: 149 + duration: 57.67125ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -7377,8 +7530,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 method: GET response: proto: HTTP/2.0 @@ -7386,20 +7539,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 477 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-05-19T15:33:31.427263Z","id":"0029f324-7ce3-4dcb-83f8-ab1bc8954a9e","last_detached_at":"2025-05-19T15:35:46.642984Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-19T15:35:46.642984Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","type":"not_found"}' headers: Content-Length: - - "477" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:47 GMT + - Mon, 30 Jun 2025 15:21:20 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7407,11 +7560,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c19b67e4-fa06-470f-8b5a-9af0843bbfbb + - 7222a2a2-7e2c-405b-9780-269dc6e41af8 + status: 404 Not Found + code: 404 + duration: 146.584375ms + - id: 153 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 463 + uncompressed: false + body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":"2025-06-30T15:21:20.845595Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:21:20.845595Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "463" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b5c74448-600b-4d18-98c2-d32e36cfa6b4 status: 200 OK code: 200 - duration: 43.310316ms - - id: 150 + duration: 52.188166ms + - id: 154 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 143 + uncompressed: false + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + headers: + Content-Length: + - "143" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb331cdf-6216-4dc5-a899-c768c9c56ad8 + status: 404 Not Found + code: 404 + duration: 38.603167ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -7426,8 +7677,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0029f324-7ce3-4dcb-83f8-ab1bc8954a9e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 463 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":"2025-06-30T15:21:20.884170Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:21:20.884170Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "463" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a4603064-6b56-4112-a814-46b3d8e3f430 + status: 200 OK + code: 200 + duration: 44.86775ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 method: DELETE response: proto: HTTP/2.0 @@ -7444,9 +7744,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:47 GMT + - Mon, 30 Jun 2025 15:21:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7454,11 +7754,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a44d2eda-b2e1-424b-94f7-107f8dcc63f4 + - cfc3a7fe-4634-4f6f-9803-a297862dc579 status: 204 No Content code: 204 - duration: 163.085471ms - - id: 151 + duration: 73.202875ms + - id: 157 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:21:21 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 114b62b4-1cec-481b-b9aa-ce4fa6e017a5 + status: 204 No Content + code: 204 + duration: 86.474959ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7473,8 +7820,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/a398f845-b078-400e-90c9-f43efdebc00f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 method: GET response: proto: HTTP/2.0 @@ -7493,9 +7840,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 19 May 2025 15:35:47 GMT + - Mon, 30 Jun 2025 15:21:21 GMT Server: - - Scaleway API Gateway (fr-par-3;edge01) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7503,7 +7850,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ba7227a-8f16-40d2-8ad6-84147cf0e9d8 + - a057b2a0-b2f7-4404-9c0a-e65fcb2e8107 status: 404 Not Found code: 404 - duration: 41.019109ms + duration: 27.437083ms diff --git a/internal/services/vpc/testdata/vpc-with-region.cassette.yaml b/internal/services/vpc/testdata/vpc-with-region.cassette.yaml index 9a2d2b2060..940b62a07c 100644 --- a/internal/services/vpc/testdata/vpc-with-region.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-with-region.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-vpc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"test-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.4; darwin; arm64) 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: 364 + content_length: 396 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.850145Z","id":"dd1b6fc3-9b8f-4979-adc6-030d457b888e","is_default":false,"name":"test-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-28T10:05:15.850145Z"}' + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":false,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.253602Z"}' headers: Content-Length: - - "364" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 35ed4c21-013c-4189-b7e3-0aedef13cd42 + - cc88d7d0-e43d-4910-a58d-c47a97f352b8 status: 200 OK code: 200 - duration: 77.875833ms + duration: 326.688625ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/dd1b6fc3-9b8f-4979-adc6-030d457b888e - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.850145Z","id":"dd1b6fc3-9b8f-4979-adc6-030d457b888e","is_default":false,"name":"test-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-28T10:05:15.850145Z"}' + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":true,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.307308Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7fa987b3-ade3-4c8b-a27b-b37d9195e0bb + - a22e2661-6428-4348-ba1c-536cb1bd150d status: 200 OK code: 200 - duration: 26.652833ms + duration: 48.203708ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,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/dd1b6fc3-9b8f-4979-adc6-030d457b888e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.850145Z","id":"dd1b6fc3-9b8f-4979-adc6-030d457b888e","is_default":false,"name":"test-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-28T10:05:15.850145Z"}' + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":true,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.307308Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68716229-726a-411d-baff-56759dc318af + - cf46cc34-03b2-49d6-b16a-3beae9fbf2fe status: 200 OK code: 200 - duration: 25.27725ms + duration: 43.521583ms - id: 3 request: proto: HTTP/1.1 @@ -165,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/vpcs/dd1b6fc3-9b8f-4979-adc6-030d457b888e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.850145Z","id":"dd1b6fc3-9b8f-4979-adc6-030d457b888e","is_default":false,"name":"test-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-28T10:05:15.850145Z"}' + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":true,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.307308Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3bae921-86d7-442a-b20c-b84c895c9c05 + - 80adfc09-2470-4324-bf41-e21f7d6c6892 status: 200 OK code: 200 - duration: 36.023375ms + duration: 27.347917ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +216,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/dd1b6fc3-9b8f-4979-adc6-030d457b888e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f method: GET response: proto: HTTP/2.0 @@ -223,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.850145Z","id":"dd1b6fc3-9b8f-4979-adc6-030d457b888e","is_default":false,"name":"test-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-28T10:05:15.850145Z"}' + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":true,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.307308Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:18 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c86b40cc-ead4-4cd0-91cd-ff5279cdbde0 + - ae1b7d70-07c9-452f-8a10-8a8d69ff0e7f status: 200 OK code: 200 - duration: 35.833958ms + duration: 30.661083ms - id: 5 request: proto: HTTP/1.1 @@ -263,8 +265,57 @@ 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/dd1b6fc3-9b8f-4979-adc6-030d457b888e + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 395 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:57.253602Z","custom_routes_propagation_enabled":true,"id":"4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f","is_default":false,"name":"test-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-06-30T15:18:57.307308Z"}' + headers: + Content-Length: + - "395" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a760906f-3e9d-4017-8f5a-6764f2860c78 + status: 200 OK + code: 200 + duration: 28.712583ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bcfa3ac-19f1-40d5-94e6-e0d72992ad2f method: DELETE response: proto: HTTP/2.0 @@ -281,9 +332,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -291,11 +342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8dfaaf-557f-4492-913f-bfe8164fe7aa + - 62555c45-5675-466c-8146-6f68fe3aa902 status: 204 No Content code: 204 - duration: 85.096125ms - - id: 6 + duration: 89.749416ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -306,13 +357,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-vpc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"test-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.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs method: POST response: @@ -321,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 396 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.774015Z","id":"d2799561-4664-4700-9331-c1b6bcbbef71","is_default":false,"name":"test-vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:19.774015Z"}' + body: '{"created_at":"2025-06-30T15:18:58.126455Z","custom_routes_propagation_enabled":false,"id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","is_default":false,"name":"test-vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:18:58.126455Z"}' headers: Content-Length: - - "364" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -342,11 +393,62 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c2e4936-b04e-4c5b-9d3f-9730c9554113 + - 5a1f0af6-fe3b-4899-9846-328aed1d68d9 status: 200 OK code: 200 - duration: 131.352042ms - - id: 7 + duration: 107.8755ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 2 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca/enable-custom-routes-propagation + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 395 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:58.126455Z","custom_routes_propagation_enabled":true,"id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","is_default":false,"name":"test-vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:18:58.211029Z"}' + headers: + Content-Length: + - "395" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:58 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5bfbf67-1467-42e2-b19f-cfca86b9e5ad + status: 200 OK + code: 200 + duration: 84.724583ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -361,8 +463,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/nl-ams/vpcs/d2799561-4664-4700-9331-c1b6bcbbef71 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca method: GET response: proto: HTTP/2.0 @@ -370,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.774015Z","id":"d2799561-4664-4700-9331-c1b6bcbbef71","is_default":false,"name":"test-vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:19.774015Z"}' + body: '{"created_at":"2025-06-30T15:18:58.126455Z","custom_routes_propagation_enabled":true,"id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","is_default":false,"name":"test-vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:18:58.211029Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -391,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ae01f8d4-547f-44a5-a474-be0600d6a974 + - 92096aa1-dbbf-49de-94a5-fa38e7d16be0 status: 200 OK code: 200 - duration: 90.973458ms - - id: 8 + duration: 60.910375ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -410,8 +512,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/nl-ams/vpcs/d2799561-4664-4700-9331-c1b6bcbbef71 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca method: GET response: proto: HTTP/2.0 @@ -419,20 +521,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.774015Z","id":"d2799561-4664-4700-9331-c1b6bcbbef71","is_default":false,"name":"test-vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:19.774015Z"}' + body: '{"created_at":"2025-06-30T15:18:58.126455Z","custom_routes_propagation_enabled":true,"id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","is_default":false,"name":"test-vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:18:58.211029Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -440,11 +542,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 02ccc1a9-c438-432a-8766-1bc1d6669fe5 + - c1b329d0-47a7-4c9b-bd31-a619bc786144 status: 200 OK code: 200 - duration: 53.391542ms - - id: 9 + duration: 46.134542ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -459,8 +561,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/nl-ams/vpcs/d2799561-4664-4700-9331-c1b6bcbbef71 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca method: GET response: proto: HTTP/2.0 @@ -468,20 +570,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:19.774015Z","id":"d2799561-4664-4700-9331-c1b6bcbbef71","is_default":false,"name":"test-vpc","organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","private_network_count":0,"project_id":"105bdce1-64c0-48ab-899d-868455867ecf","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-01-28T10:05:19.774015Z"}' + body: '{"created_at":"2025-06-30T15:18:58.126455Z","custom_routes_propagation_enabled":true,"id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","is_default":false,"name":"test-vpc","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","private_network_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"nl-ams","routing_enabled":true,"tags":[],"updated_at":"2025-06-30T15:18:58.211029Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,11 +591,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9654a72c-25a4-471a-bfb3-bfb122bafd7d + - f1c43df6-26d9-4aac-8dac-7b82f5681074 status: 200 OK code: 200 - duration: 120.04025ms - - id: 10 + duration: 72.941042ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -508,8 +610,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/nl-ams/vpcs/d2799561-4664-4700-9331-c1b6bcbbef71 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca method: DELETE response: proto: HTTP/2.0 @@ -526,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -536,11 +638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7daa665-94c1-450d-bd87-a98dee322689 + - dbf97781-a7d0-44a9-b9b0-d62ce860bd05 status: 204 No Content code: 204 - duration: 142.507ms - - id: 11 + duration: 161.443666ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -555,8 +657,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/nl-ams/vpcs/d2799561-4664-4700-9331-c1b6bcbbef71 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/nl-ams/vpcs/d4ca3b14-60f5-4df7-ac72-de2f853f93ca method: GET response: proto: HTTP/2.0 @@ -566,7 +668,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"d2799561-4664-4700-9331-c1b6bcbbef71","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"d4ca3b14-60f5-4df7-ac72-de2f853f93ca","type":"not_found"}' headers: Content-Length: - "124" @@ -575,9 +677,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:18:59 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -585,7 +687,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 600a1221-aae9-474a-b10a-60fc68d27a6a + - 1e04c55d-65da-4365-89ba-572bb44ed1b3 status: 404 Not Found code: 404 - duration: 44.024542ms + duration: 43.240791ms diff --git a/internal/services/vpc/testdata/vpc-with-tags.cassette.yaml b/internal/services/vpc/testdata/vpc-with-tags.cassette.yaml index 43e21546ac..3c240155a5 100644 --- a/internal/services/vpc/testdata/vpc-with-tags.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-with-tags.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"test-vpc","project_id":"105bdce1-64c0-48ab-899d-868455867ecf","tags":[],"enable_routing":false}' + body: '{"name":"test-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.4; darwin; arm64) 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: 364 + content_length: 396 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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-28T10:05:15.836627Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":false,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.212043Z"}' headers: Content-Length: - - "364" + - "396" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 46352e11-d1dd-4bc9-8ef0-180ab8b72656 + - 55ae5844-e115-4542-a987-9598b19b3c7f status: 200 OK code: 200 - duration: 415.165916ms + duration: 297.895375ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/63208842-edc8-47a3-a00f-4f256f3f1d2b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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-28T10:05:15.836627Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.284536Z"}' headers: Content-Length: - - "364" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:15 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 200056ec-a3cf-49c5-9866-8a0e29be159c + - 8e0b2fa8-ce3e-43ef-906b-3fef64877ed0 status: 200 OK code: 200 - duration: 35.3325ms + duration: 54.966125ms - id: 2 request: proto: HTTP/1.1 @@ -116,8 +118,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -125,20 +127,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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-28T10:05:15.836627Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.284536Z"}' headers: Content-Length: - - "364" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b3dac36-41c5-4ee4-bbfe-8e759d017681 + - 6e10278d-9b8a-4204-8edb-eccc5869e7a8 status: 200 OK code: 200 - duration: 26.306041ms + duration: 34.314125ms - id: 3 request: proto: HTTP/1.1 @@ -165,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/vpcs/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -174,20 +176,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 364 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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-28T10:05:15.836627Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.284536Z"}' headers: Content-Length: - - "364" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:16 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -195,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84a917e6-697e-45d4-a685-7ea42435207b + - 1553873b-cde3-4b9d-941c-930d97281ca1 status: 200 OK code: 200 - duration: 24.461208ms + duration: 26.547917ms - id: 4 request: proto: HTTP/1.1 @@ -214,8 +216,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -223,20 +225,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 354 + content_length: 395 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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-28T10:05:15.836627Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.284536Z"}' headers: Content-Length: - - "354" + - "395" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:17 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -244,11 +246,60 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 738a5fd8-d9a7-4bb0-b861-a5971c41dc4e + - 65c30d8c-ba23-41ac-a989-b9bc67d847dd status: 200 OK code: 200 - duration: 34.938458ms + duration: 28.695125ms - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 395 + uncompressed: false + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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-06-30T15:18:57.284536Z"}' + headers: + Content-Length: + - "395" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:18:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 26c1d19d-de59-4934-86b3-a2616926d5cb + status: 200 OK + code: 200 + duration: 25.14925ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -265,8 +316,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/vpc/v2/regions/fr-par/vpcs/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: PATCH response: proto: HTTP/2.0 @@ -274,20 +325,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-01-28T10:05:19.502055Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-06-30T15:18:57.949253Z"}' headers: Content-Length: - - "376" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +346,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7d1f32c-3a92-4dae-98fa-9558b4cac821 + - 61e12c38-e22d-40a9-9dcd-1f757de0e48f status: 200 OK code: 200 - duration: 44.743125ms - - id: 6 + duration: 39.492167ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -314,8 +365,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -323,20 +374,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-01-28T10:05:19.502055Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-06-30T15:18:57.949253Z"}' headers: Content-Length: - - "387" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:57 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -344,11 +395,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 773001a9-a0f4-483a-ad57-0895e29292d9 + - 84e8f63e-18e4-4ac4-be3e-3144e58c2ede status: 200 OK code: 200 - duration: 28.166416ms - - id: 7 + duration: 28.178ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -363,8 +414,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -372,20 +423,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 387 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-01-28T10:05:19.502055Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-06-30T15:18:57.949253Z"}' headers: Content-Length: - - "387" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:19 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -393,11 +444,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f4932f12-7e8f-4d5d-a22b-6f25e7104a2b + - 0e681bfd-600b-4cc1-af2c-d50ded48b837 status: 200 OK code: 200 - duration: 28.1755ms - - id: 8 + duration: 28.533208ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -412,8 +463,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -421,20 +472,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 376 + content_length: 417 uncompressed: false - body: '{"created_at":"2025-01-28T10:05:15.836627Z","id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-01-28T10:05:19.502055Z"}' + body: '{"created_at":"2025-06-30T15:18:57.212043Z","custom_routes_propagation_enabled":true,"id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","is_default":false,"name":"test-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":["terraform-test","vpc"],"updated_at":"2025-06-30T15:18:57.949253Z"}' headers: Content-Length: - - "376" + - "417" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:20 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,11 +493,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 010e0a97-7cec-485a-9b99-5ce40988c4e0 + - a9bb09a4-8b7e-45db-b62d-91618d190c6b status: 200 OK code: 200 - duration: 38.000542ms - - id: 9 + duration: 40.587458ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -461,8 +512,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/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: DELETE response: proto: HTTP/2.0 @@ -479,9 +530,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:21 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -489,11 +540,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 920751bf-e00e-40b5-95cf-1830d4540a19 + - 6b001a55-52c5-4204-8a34-4e68db56432a status: 204 No Content code: 204 - duration: 90.091709ms - - id: 10 + duration: 100.638125ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -508,8 +559,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.23.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/63208842-edc8-47a3-a00f-4f256f3f1d2b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b8abfc81-bf9a-467f-a90c-47cf5532488b method: GET response: proto: HTTP/2.0 @@ -519,7 +570,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"63208842-edc8-47a3-a00f-4f256f3f1d2b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"b8abfc81-bf9a-467f-a90c-47cf5532488b","type":"not_found"}' headers: Content-Length: - "124" @@ -528,9 +579,9 @@ interactions: Content-Type: - application/json Date: - - Tue, 28 Jan 2025 10:05:22 GMT + - Mon, 30 Jun 2025 15:18:58 GMT Server: - - Scaleway API Gateway (fr-par-1;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -538,7 +589,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa0978f1-c4f2-4e23-9e48-5583857f0212 + - cc4abd71-0269-4ddb-9d79-48f6b2c1999e status: 404 Not Found code: 404 - duration: 28.307291ms + duration: 21.543583ms diff --git a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml index 2ded1b7dde..f769e56d6c 100644 --- a/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml +++ b/internal/services/vpcgw/testdata/data-source-vpc-public-gateway-pat-rule-basic.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my vpc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 394 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.368466Z","custom_routes_propagation_enabled":false,"id":"e5bad572-1b6a-4eee-928d-4c36ce5eda45","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.368466Z"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":false,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.147579Z"}' headers: Content-Length: - "394" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -48,46 +48,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31d61990-c69b-4b51-ab35-5c7c8984b329 + - 04aad64c-31af-4c68-9f81-f6a2e2278b58 status: 200 OK code: 200 - duration: 247.250918ms + duration: 359.225458ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e5bad572-1b6a-4eee-928d-4c36ce5eda45 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.368466Z","custom_routes_propagation_enabled":false,"id":"e5bad572-1b6a-4eee-928d-4c36ce5eda45","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.368466Z"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":true,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.191506Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -97,48 +99,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f858401a-7c3f-4694-b1d2-348836f38c91 + - 267cb7a8-b1b7-4b92-a354-488b68f038d0 status: 200 OK code: 200 - duration: 30.653697ms + duration: 38.626125ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 117 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":["172.16.32.0/22"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":true,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.191506Z"}' headers: Content-Length: - - "1061" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -148,28 +148,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55a8ed7f-8651-40b5-8ced-9f4e4064e81a + - c785196d-df63-4742-a986-06a9364e9c22 status: 200 OK code: 200 - duration: 702.844461ms + duration: 49.187958ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 159 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"pn_test_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -178,7 +180,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1061" @@ -187,7 +189,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -197,48 +199,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db57f6d1-f982-40ee-8535-a187cf656a3c + - 52d5afab-c5e4-4a57-bf27-abde43e9a970 status: 200 OK code: 200 - duration: 28.158927ms + duration: 960.397917ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 154 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"tf-pn-loving-wescoff","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 900 + content_length: 1061 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.848785Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "900" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -248,46 +248,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e318777-1d2c-416b-83dc-ce0a8f850538 + - ef0dd6df-4be0-4c32-a8c6-7ff1cfbbf77d status: 200 OK code: 200 - duration: 1.719380469s + duration: 25.774667ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 158 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-pn-inspiring-jennings","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 900 + content_length: 898 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.848785Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:04.895977Z","zone":"fr-par-1"}' headers: Content-Length: - - "900" + - "898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -297,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a93c5cf-56bc-424e-907f-3fa19a6f25fb + - ff463671-0f7d-410d-872f-ae4c69340499 status: 200 OK code: 200 - duration: 33.747035ms + duration: 1.123990417s - id: 6 request: proto: HTTP/1.1 @@ -316,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -325,18 +327,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 919 + content_length: 916 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:35.362490Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:04.932614Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "919" + - "916" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Mon, 30 Jun 2025 15:09:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59807e64-9fac-45b5-898d-ce10f5a594b4 + - bcdab94c-82f4-4695-9ca4-89291845ac59 status: 200 OK code: 200 - duration: 78.759509ms + duration: 29.3635ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -374,18 +376,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 913 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:44.883823Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:09.633155Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "915" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:45 GMT + - Mon, 30 Jun 2025 15:09:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 951ef5e5-bb7e-49ac-b2bc-a926ad807d06 + - 6276227e-28a7-46f7-8dea-90ecbdd27530 status: 200 OK code: 200 - duration: 39.040217ms + duration: 34.580334ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -423,18 +425,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 913 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:44.883823Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:09.633155Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "915" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:45 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -444,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eec2a132-679a-403b-a538-59e90b8ce42f + - ffd5351a-6bba-4acc-992c-c5b5cf5d1778 status: 200 OK code: 200 - duration: 29.534859ms + duration: 27.241708ms - id: 9 request: proto: HTTP/1.1 @@ -463,8 +465,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 method: GET response: proto: HTTP/2.0 @@ -472,18 +474,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 1061 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:44.883823Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "915" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:45 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -493,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b3c1416-edc6-4ea7-a681-9faf8c0ee60c + - 6c96fdfc-24bb-43bb-8bfb-f734f469d419 status: 200 OK code: 200 - duration: 32.937774ms + duration: 28.38525ms - id: 10 request: proto: HTTP/1.1 @@ -512,8 +514,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad method: GET response: proto: HTTP/2.0 @@ -521,18 +523,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":true,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.191506Z"}' headers: Content-Length: - - "1061" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:45 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -542,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fa2f92c4-011c-4310-8e88-e1af407efb13 + - 6a48ef40-9796-438e-b3b3-d35dc64484aa status: 200 OK code: 200 - duration: 45.355707ms + duration: 29.507458ms - id: 11 request: proto: HTTP/1.1 @@ -561,8 +563,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e5bad572-1b6a-4eee-928d-4c36ce5eda45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -570,18 +572,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 913 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.368466Z","custom_routes_propagation_enabled":false,"id":"e5bad572-1b6a-4eee-928d-4c36ce5eda45","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.368466Z"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:09.633155Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "394" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:45 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -591,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fef10483-b550-49de-a4e0-db3aeffcc601 + - d70e2a6b-f520-4ba2-9989-b95eabd219a0 status: 200 OK code: 200 - duration: 46.248351ms + duration: 33.167625ms - id: 12 request: proto: HTTP/1.1 @@ -610,8 +612,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e5bad572-1b6a-4eee-928d-4c36ce5eda45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad method: GET response: proto: HTTP/2.0 @@ -619,18 +621,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.368466Z","custom_routes_propagation_enabled":false,"id":"e5bad572-1b6a-4eee-928d-4c36ce5eda45","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.368466Z"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":true,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.191506Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:46 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -640,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d707cf1-f77b-4eac-9e27-05da72159462 + - c0277d4c-2898-4536-bc1e-def51e41bc86 status: 200 OK code: 200 - duration: 37.845134ms + duration: 26.849166ms - id: 13 request: proto: HTTP/1.1 @@ -659,8 +661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 method: GET response: proto: HTTP/2.0 @@ -670,7 +672,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1061" @@ -679,7 +681,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:46 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -689,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 94ba6c02-5d5e-42ee-a246-48f21349a64a + - e29a3235-374b-4aed-9048-3f1bedd1b7be status: 200 OK code: 200 - duration: 41.060171ms + duration: 32.00275ms - id: 14 request: proto: HTTP/1.1 @@ -708,8 +710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -717,18 +719,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 913 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:44.883823Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:09.633155Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "915" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:46 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -738,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2458751a-b760-4ae2-9c9e-e9af23e7bd1f + - 1785e8e4-6e96-4a7d-ae94-ce28bbc18f0d status: 200 OK code: 200 - duration: 42.626555ms + duration: 36.894792ms - id: 15 request: proto: HTTP/1.1 @@ -757,8 +759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -766,18 +768,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 913 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:44.883823Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:09.633155Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "915" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -787,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7040f62b-eac5-4cb1-93ac-15117a55a97e + - f424136d-5edc-4f99-911f-b3b266ba00f1 status: 200 OK code: 200 - duration: 31.01925ms + duration: 27.753167ms - id: 16 request: proto: HTTP/1.1 @@ -806,7 +808,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: @@ -815,18 +817,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38951 + content_length: 39208 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "38951" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Link: - ; rel="next",; rel="last" Server: @@ -838,12 +840,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca6d14c5-2f72-4452-8d6a-2dfb227f25fb + - 4c5f838a-0226-4ef8-b1c2-7807d2113647 X-Total-Count: - - "71" + - "75" status: 200 OK code: 200 - duration: 87.343523ms + duration: 45.300958ms - id: 17 request: proto: HTTP/1.1 @@ -859,7 +861,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: @@ -868,18 +870,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 16732 + content_length: 19730 uncompressed: false - body: '{"servers":{"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":25000000000}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":100000000000}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":50000000000}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":1000000000000,"min_size":500000000000}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":200000000000}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":300000000000}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":200000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":400000000000}}}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "16732" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: @@ -891,12 +893,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e50f8a9-7754-461f-b2bc-a6a86976b182 + - e3b622cb-24f9-4709-99ac-35c0b37ee444 X-Total-Count: - - "71" + - "75" status: 200 OK code: 200 - duration: 52.255711ms + duration: 57.604375ms - id: 18 request: proto: HTTP/1.1 @@ -912,7 +914,7 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/marketplace/v2/local-images?image_label=debian_bullseye&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: @@ -921,18 +923,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1275 + content_length: 1191 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"6465cef1-374a-451c-bc2d-e2d179625dad","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["AMP2-C1","AMP2-C2","AMP2-C4","AMP2-C8","AMP2-C12","AMP2-C24","AMP2-C48","AMP2-C60","COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f7766058-79ab-416b-84ad-3939f110ce0c","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"8883e1c2-85bc-44c3-85b3-67d2ae72dd14","label":"debian_bullseye","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "1275" + - "1191" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -942,29 +944,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e64253b2-e4f4-4678-9820-4e26a2e72d01 + - 5b73a547-00e6-493f-aa44-4189cd08dac5 status: 200 OK code: 200 - duration: 142.506449ms + duration: 87.639209ms - id: 19 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 230 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","enable_masquerade":true,"push_default_route":true}' + body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -972,18 +974,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 384 + content_length: 1699 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:47.757766Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:11.084734+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "384" + - "1699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:11 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -993,10 +997,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c881c659-b4e8-43b7-9b83-2e21a8050989 - status: 200 OK - code: 200 - duration: 576.75806ms + - d4b99c03-8650-4f9f-b8dc-8b95c86e06e6 + status: 201 Created + code: 201 + duration: 938.177208ms - id: 20 request: proto: HTTP/1.1 @@ -1012,8 +1016,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -1021,18 +1025,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1303 + content_length: 1699 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:47.757766Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:47.863857Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:11.084734+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1303" + - "1699" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:47 GMT + - Mon, 30 Jun 2025 15:09:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1042,30 +1046,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86738a0b-9d67-4ae1-bee5-53cb1d01c023 + - c827fc0a-2981-49ac-8988-d7da1a8e0709 status: 200 OK code: 200 - duration: 31.252129ms + duration: 156.013791ms - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 230 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"Scaleway Instance","dynamic_ip_required":false,"commercial_type":"DEV1-S","image":"6465cef1-374a-451c-bc2d-e2d179625dad","volumes":{"0":{"boot":false}},"boot_type":"local","project":"fa1e3217-dc80-42ac-85c3-3f034b78b552"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1074,7 +1076,7 @@ interactions: trailer: {} content_length: 1699 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:47.973026+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:11.084734+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1699" @@ -1083,9 +1085,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:48 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - Mon, 30 Jun 2025 15:09:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1095,10 +1095,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 27b1ac1e-716a-4eee-9a5b-20d960a13e02 - status: 201 Created - code: 201 - duration: 812.724453ms + - c439a2b5-c7a7-4a8e-8e49-5f919dcd92a6 + status: 200 OK + code: 200 + duration: 176.073125ms - id: 22 request: proto: HTTP/1.1 @@ -1114,8 +1114,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -1123,18 +1123,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1699 + content_length: 673 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:47.973026+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:09:11.211237Z","id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:09:11.211237Z","id":"0ec22fc7-e404-4e30-9292-b748c81e2920","product_resource_id":"49813d4b-fec4-4726-b997-006e189c6925","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:09:11.211237Z","zone":"fr-par-1"}' headers: Content-Length: - - "1699" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:48 GMT + - Mon, 30 Jun 2025 15:09:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1144,46 +1144,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65363ef3-314a-44d5-bb2c-e88b8a3d057d + - 9593dcad-1c42-4b07-8682-99c5c6b23fae status: 200 OK code: 200 - duration: 184.864105ms + duration: 47.945667ms - id: 23 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1699 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:47.973026+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/49813d4b-fec4-4726-b997-006e189c6925/action","href_result":"/servers/49813d4b-fec4-4726-b997-006e189c6925","id":"42e04fa2-3b38-4cb6-9259-02f64c912ce4","progress":0,"started_at":"2025-06-30T15:09:12.459955+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1699" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:48 GMT + - Mon, 30 Jun 2025 15:09:12 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/42e04fa2-3b38-4cb6-9259-02f64c912ce4 Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1193,10 +1197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c4ca637-70ad-435d-960c-c0b540289868 - status: 200 OK - code: 200 - duration: 234.319237ms + - 2bf8c752-235a-4a73-86a1-f7a8d66b9e17 + status: 202 Accepted + code: 202 + duration: 394.476ms - id: 24 request: proto: HTTP/1.1 @@ -1212,8 +1216,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -1221,18 +1225,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 1721 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:48.103517Z","id":"f4fff691-082e-4295-bcab-2490f54fd111","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:48.103517Z","id":"55f45b5b-53db-4c19-b1eb-eb3ba207d651","product_resource_id":"5d941147-d87c-4559-a491-3f4172ab568b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:48.103517Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:12.262255+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "673" + - "1721" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:48 GMT + - Mon, 30 Jun 2025 15:09:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1242,29 +1246,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a52c43d-910c-46e9-a801-842d51752e31 + - a5e70e93-909f-4cb0-bbd3-dea7e3f76c9d status: 200 OK code: 200 - duration: 50.767801ms + duration: 155.05275ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","enable_masquerade":true,"push_default_route":true}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks method: POST response: proto: HTTP/2.0 @@ -1272,20 +1276,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 384 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/5d941147-d87c-4559-a491-3f4172ab568b/action","href_result":"/servers/5d941147-d87c-4559-a491-3f4172ab568b","id":"a80bae4a-b672-44d1-8bdf-94f0e67f9923","progress":0,"started_at":"2025-05-16T13:39:49.470451+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:09:12.786520Z","zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:49 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/a80bae4a-b672-44d1-8bdf-94f0e67f9923 + - Mon, 30 Jun 2025 15:09:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1295,10 +1297,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26ebf709-96d4-4df0-9d50-0ba9c1ec9b9a - status: 202 Accepted - code: 202 - duration: 910.690342ms + - 6b6c8ac4-3262-44a2-aa40-4e84bd2e7c24 + status: 200 OK + code: 200 + duration: 2.178670125s - id: 26 request: proto: HTTP/1.1 @@ -1314,8 +1316,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -1323,18 +1325,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1721 + content_length: 1301 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:48.970323+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:09:12.786520Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:12.911343Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1721" + - "1301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:49 GMT + - Mon, 30 Jun 2025 15:09:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1344,10 +1346,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f65de5b-f26f-42dd-97ae-7da84a7d0a54 + - b1b7b8b1-a446-479e-8fba-61fe368a97da status: 200 OK code: 200 - duration: 158.810425ms + duration: 28.418667ms - id: 27 request: proto: HTTP/1.1 @@ -1363,8 +1365,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -1372,18 +1374,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1303 + content_length: 1855 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:47.757766Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:47.863857Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:15.656813+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1303" + - "1855" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:52 GMT + - Mon, 30 Jun 2025 15:09:17 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1393,10 +1395,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4d569d5-734c-4488-bb8a-eab65d40d164 + - 0c04ff30-7a21-469e-ab8a-79581d5fee98 status: 200 OK code: 200 - duration: 64.068888ms + duration: 155.475ms - id: 28 request: proto: HTTP/1.1 @@ -1412,8 +1414,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -1421,18 +1423,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1301 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:53.400941+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:09:12.786520Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:12.911343Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1856" + - "1301" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:55 GMT + - Mon, 30 Jun 2025 15:09:17 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1442,10 +1444,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - af3a4203-7d29-48ce-80a4-a1dd998d1db2 + - c5714d69-bf0e-48f6-9dbf-1f1e12c641c5 status: 200 OK code: 200 - duration: 312.259953ms + duration: 32.739292ms - id: 29 request: proto: HTTP/1.1 @@ -1461,8 +1463,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 method: GET response: proto: HTTP/2.0 @@ -1472,7 +1474,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:54.376804Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1061" @@ -1481,7 +1483,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:55 GMT + - Mon, 30 Jun 2025 15:09:17 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1491,10 +1493,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 744da445-86ef-413f-91ff-3fc5c920111f + - a83cdeb5-ff49-41b7-9bdb-248f63911d84 status: 200 OK code: 200 - duration: 39.60693ms + duration: 26.574542ms - id: 30 request: proto: HTTP/1.1 @@ -1510,8 +1512,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -1519,18 +1521,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1856 + content_length: 1855 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:53.400941+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:15.656813+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1856" + - "1855" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:55 GMT + - Mon, 30 Jun 2025 15:09:18 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1540,48 +1542,46 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c8573e2-d42b-4696-bdd7-a89909dcce50 + - 3f492209-b493-4d32-b1dc-fe26f3a60dee status: 200 OK code: 200 - duration: 695.683738ms + duration: 153.233458ms - id: 31 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1339 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:09:18.586447Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:12.911343Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1339" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:09:22 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1591,28 +1591,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e9b1ed8-e315-4fbc-9f42-2c9d06eceb10 - status: 201 Created - code: 201 - duration: 1.141536822s + - f12d549f-5d80-430f-a692-cdacf72febdd + status: 200 OK + code: 200 + duration: 29.266917ms - id: 32 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041"}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1621,7 +1623,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1630,7 +1632,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:09:23 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1640,10 +1642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3506c074-d6ec-4e45-9bf0-e107f17b95ae - status: 200 OK - code: 200 - duration: 98.26115ms + - 7220d355-9c4f-4884-b8d6-727d7d03f0bf + status: 201 Created + code: 201 + duration: 4.957394458s - id: 33 request: proto: HTTP/1.1 @@ -1659,8 +1661,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -1668,18 +1670,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1341 + content_length: 473 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"configuring","updated_at":"2025-05-16T13:39:53.548572Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:47.863857Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1341" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:09:23 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1689,10 +1691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf97d416-fb08-4de0-8bd6-a9fa58760c3a + - 99d5f4a8-131b-413c-855f-9a656cc0f57c status: 200 OK code: 200 - duration: 25.191734ms + duration: 67.532542ms - id: 34 request: proto: HTTP/1.1 @@ -1708,8 +1710,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -1717,18 +1719,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1329 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:02 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1738,10 +1740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f63fb43e-f39b-4c61-b1b4-a633ccf379ee + - 8d02888a-38ce-4bbc-b387-e6b0f6160c44 status: 200 OK code: 200 - duration: 121.957882ms + duration: 36.083541ms - id: 35 request: proto: HTTP/1.1 @@ -1757,8 +1759,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -1766,18 +1768,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:03 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1787,10 +1789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c452fecf-6ce0-4ce2-bc4a-d9e86534a1b7 + - 986f71b7-00ee-4afc-a281-5dd10e1b3292 status: 200 OK code: 200 - duration: 25.124701ms + duration: 43.498458ms - id: 36 request: proto: HTTP/1.1 @@ -1806,8 +1808,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -1817,7 +1819,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -1826,7 +1828,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:03 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1836,10 +1838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4955e297-866c-439b-a831-8118eaa41ba5 + - 0ec412c8-2585-40ff-b0e3-44f55025e9d5 status: 200 OK code: 200 - duration: 65.317215ms + duration: 43.037458ms - id: 37 request: proto: HTTP/1.1 @@ -1855,8 +1857,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -1864,18 +1866,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 1329 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "416" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:03 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1885,10 +1887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72379f4c-2160-4abb-8693-c04a265d3ac5 + - b150ed9a-efbb-4839-8a21-ba23eae674fc status: 200 OK code: 200 - duration: 71.375136ms + duration: 31.124209ms - id: 38 request: proto: HTTP/1.1 @@ -1904,8 +1906,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cd0c9e65-c9d0-40d1-89ee-4fb544913041&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=976a0e68-660d-47b4-9227-c5b5adc6e37d&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1913,18 +1915,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 522 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:09:11.984450Z","id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","mac_address":"02:00:00:17:DC:32","name":"tf-pn-inspiring-jennings","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:13.242916Z","zone":null}],"total_count":1}' headers: Content-Length: - - "1331" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:03 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1934,10 +1936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1af729a9-8c55-4824-a407-497272e5e7a4 + - 820bab08-2cbd-4b03-9f06-e13ceec93e5a status: 200 OK code: 200 - duration: 80.114208ms + duration: 48.9345ms - id: 39 request: proto: HTTP/1.1 @@ -1953,8 +1955,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9dca58e8-3089-4619-bac4-75407ecdc030&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=f995b2d9-6081-4718-83bc-380cbcfd16fd&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -1962,18 +1964,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 518 + content_length: 473 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-05-16T13:39:47.631585Z","id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","mac_address":"02:00:00:14:2B:A0","name":"tf-pn-loving-wescoff","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:48.139638Z","zone":null}],"total_count":1}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "518" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:03 GMT + - Mon, 30 Jun 2025 15:09:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -1983,10 +1985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5bbb5609-4832-42ca-9eb1-8cb62073bc56 + - fe1c26d3-64de-470c-af95-1a8e7f1a72be status: 200 OK code: 200 - duration: 76.685814ms + duration: 63.038333ms - id: 40 request: proto: HTTP/1.1 @@ -2002,8 +2004,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2013,7 +2015,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2022,7 +2024,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:09:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2032,10 +2034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 366fa976-1f97-4821-a64f-9744d00875ce + - 28a80313-262e-45d8-9669-f965bc5f3a54 status: 200 OK code: 200 - duration: 177.981025ms + duration: 65.775833ms - id: 41 request: proto: HTTP/1.1 @@ -2051,8 +2053,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2062,7 +2064,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2071,7 +2073,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:12 GMT + - Mon, 30 Jun 2025 15:09:38 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2081,10 +2083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccad8d4d-cc6b-4230-93e1-a97e48c47479 + - 6c272709-317e-4105-8e74-a597d2a324a5 status: 200 OK code: 200 - duration: 66.686382ms + duration: 66.30175ms - id: 42 request: proto: HTTP/1.1 @@ -2100,8 +2102,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2111,7 +2113,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2120,7 +2122,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:17 GMT + - Mon, 30 Jun 2025 15:09:43 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2130,10 +2132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d81e7b5-63a1-4ef1-b6bb-fe153b1486e3 + - b38379ed-95d2-4f7b-9762-368daa63aae6 status: 200 OK code: 200 - duration: 58.429849ms + duration: 72.692708ms - id: 43 request: proto: HTTP/1.1 @@ -2149,8 +2151,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2160,7 +2162,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:18.280338+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -2169,7 +2171,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:22 GMT + - Mon, 30 Jun 2025 15:09:48 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2179,10 +2181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d504eb35-0d57-4151-a4c5-f0360127e592 + - 9e67d642-0c17-4ba1-b812-ca84f72533a4 status: 200 OK code: 200 - duration: 74.584247ms + duration: 64.980833ms - id: 44 request: proto: HTTP/1.1 @@ -2198,8 +2200,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2207,18 +2209,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:39:56.160198+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:27 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2228,10 +2230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4afc9f21-425f-4388-b53b-11f6a71ac43c + - ba010c92-0b7c-435b-82cb-536ab0b54e20 status: 200 OK code: 200 - duration: 71.325975ms + duration: 63.609833ms - id: 45 request: proto: HTTP/1.1 @@ -2247,8 +2249,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -2258,7 +2260,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2267,7 +2269,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:32 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2277,10 +2279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ee68f91-d491-48db-b0fa-e233f90bbbd7 + - dd07d7d2-6040-43ed-80fd-fc36107c2538 status: 200 OK code: 200 - duration: 63.400201ms + duration: 60.054584ms - id: 46 request: proto: HTTP/1.1 @@ -2296,8 +2298,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -2305,18 +2307,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 2313 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:15.656813+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "475" + - "2313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:32 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2326,10 +2328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c7707d95-0fe4-4a48-a447-9358f0ae3447 + - 5771fb20-fb35-4fbb-b7a1-914747bfb0d4 status: 200 OK code: 200 - duration: 82.678274ms + duration: 168.686125ms - id: 47 request: proto: HTTP/1.1 @@ -2345,57 +2347,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 2314 - uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:53.400941+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "2314" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Fri, 16 May 2025 13:40:33 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 75827657-9546-4fd8-8496-4e614618886e - status: 200 OK - code: 200 - duration: 275.859515ms - - id: 48 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -2405,7 +2358,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f4fff691-082e-4295-bcab-2490f54fd111","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","type":"not_found"}' headers: Content-Length: - "143" @@ -2414,7 +2367,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2424,11 +2377,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e26cd467-35b3-4a64-8f96-81dac063ffa8 + - 26a1caf7-ffa5-4572-9b5b-08253ce6bf91 status: 404 Not Found code: 404 - duration: 41.473055ms - - id: 49 + duration: 42.820417ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2443,8 +2396,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -2454,7 +2407,7 @@ interactions: trailer: {} content_length: 673 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:48.103517Z","id":"f4fff691-082e-4295-bcab-2490f54fd111","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:48.103517Z","id":"55f45b5b-53db-4c19-b1eb-eb3ba207d651","product_resource_id":"5d941147-d87c-4559-a491-3f4172ab568b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:48.103517Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:11.211237Z","id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:09:11.211237Z","id":"0ec22fc7-e404-4e30-9292-b748c81e2920","product_resource_id":"49813d4b-fec4-4726-b997-006e189c6925","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:09:11.211237Z","zone":"fr-par-1"}' headers: Content-Length: - "673" @@ -2463,7 +2416,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2473,11 +2426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c857537c-ddc8-4c73-9e5b-48f9d57079e4 + - a8e82cf0-ab67-4344-ac8d-96f06d8c86c2 status: 200 OK code: 200 - duration: 48.83845ms - - id: 50 + duration: 43.19825ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2492,8 +2445,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/user_data method: GET response: proto: HTTP/2.0 @@ -2512,7 +2465,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:53 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2522,11 +2475,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ebc7dcc0-37ba-4cc2-a962-27f4e1aa919c + - 143f5b59-c7e0-4447-944b-fbe77d512cb3 status: 200 OK code: 200 - duration: 116.79773ms - - id: 51 + duration: 55.039542ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2541,8 +2494,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics method: GET response: proto: HTTP/2.0 @@ -2552,7 +2505,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2561,9 +2514,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2573,13 +2526,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0c848b0-41b1-4292-8cc8-39f38674b419 + - 99326c31-5201-482c-9a02-7ae51f1610d3 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 64.048272ms - - id: 52 + duration: 99.132833ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2594,8 +2547,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=d2ca399c-773c-452e-b9dd-b55ec9ba4b51&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=67a85d6c-b59a-4e7b-b0a0-3b360127c1f0&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2603,18 +2556,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1034 + content_length: 1033 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74e7:150a:dde8:af54:60f2/64","created_at":"2025-05-16T13:39:56.876619Z","id":"d837cdd6-6c8a-4faa-861a-10561e5392b0","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c3b335ef-8a7e-4c14-aa48-4165590ff528"},"tags":[],"updated_at":"2025-05-16T13:39:56.876619Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:aed1:882c:374:faab:c504/64","created_at":"2025-06-30T15:09:22.036044Z","id":"e77dff39-b0d0-4873-b622-6959c378a866","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805"},"tags":[],"updated_at":"2025-06-30T15:09:22.036044Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1034" + - "1033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2624,11 +2577,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 466648d2-7821-4740-ab71-ca26bb096aaf + - df9c886f-fb75-4759-bfb4-02e2cd044ae1 status: 200 OK code: 200 - duration: 38.24202ms - - id: 53 + duration: 40.639542ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2643,8 +2596,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Aa7%3A21&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A19%3Ae1%3A37&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2654,7 +2607,7 @@ interactions: trailer: {} content_length: 516 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":1}' headers: Content-Length: - "516" @@ -2663,7 +2616,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2673,11 +2626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5120ad9-c632-4e58-8e68-c3a3e5e34a07 + - 790a9a87-29e0-47d9-abdf-7a09cf089298 status: 200 OK code: 200 - duration: 103.880954ms - - id: 54 + duration: 54.227833ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2692,8 +2645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -2701,18 +2654,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2722,11 +2675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14df3a8d-633f-465e-ae80-bce4c3fc4d56 + - e3a62dd6-5e9b-48fa-91b7-26fe379a58b7 status: 200 OK code: 200 - duration: 27.999539ms - - id: 55 + duration: 30.249417ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2741,8 +2694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -2750,18 +2703,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2771,11 +2724,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a0aea69-3d1d-497f-92d3-57a339fc5cec + - e989c7f2-192c-4387-92c8-d7cf1b5116af status: 200 OK code: 200 - duration: 21.503338ms - - id: 56 + duration: 28.055834ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2786,13 +2739,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' + body: '{"gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","public_port":42,"private_ip":"172.16.32.3","private_port":42,"protocol":"both"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules method: POST response: @@ -2803,7 +2756,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -2812,7 +2765,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2822,11 +2775,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ffdabb7-04b6-4320-ba0b-456a97febc4a + - ef4535ff-626a-40c3-98c6-f4a56cfc099e status: 200 OK code: 200 - duration: 130.082698ms - - id: 57 + duration: 78.757708ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2841,8 +2794,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -2850,18 +2803,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2871,11 +2824,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 29c86cc8-1c2c-40e3-946c-6e05cd4f7542 + - afd54a9f-33da-47d8-967e-ff351f684747 status: 200 OK code: 200 - duration: 31.345118ms - - id: 58 + duration: 28.206333ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2890,8 +2843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -2901,7 +2854,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -2910,7 +2863,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2920,11 +2873,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1e49215-1bf5-4ff0-8a19-a8653f342a9a + - 7fafd702-473d-49f9-a4f6-fc3a3a987ce8 status: 200 OK code: 200 - duration: 81.66761ms - - id: 59 + duration: 25.583792ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2939,8 +2892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -2950,7 +2903,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -2959,7 +2912,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:33 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2969,11 +2922,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e2e8fd5-cb54-4b6b-880a-aec90b04a24a + - bddeb5f8-beb6-432c-b0b4-9348e54cd01f status: 200 OK code: 200 - duration: 22.041837ms - - id: 60 + duration: 28.225542ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2988,8 +2941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -2999,7 +2952,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3008,7 +2961,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3018,11 +2971,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ef8a63e-61ce-421a-8f0a-6dc675556739 + - c131be1c-4cb5-4c97-b282-05fb4cdc47cd status: 200 OK code: 200 - duration: 29.369063ms - - id: 61 + duration: 22.811ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3037,8 +2990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3048,7 +3001,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3057,7 +3010,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3067,11 +3020,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 571a85d1-5929-435b-85e1-e16b7be720c6 + - f70a4b40-ee90-45aa-8035-41eea9d2335e status: 200 OK code: 200 - duration: 28.248467ms - - id: 62 + duration: 24.499334ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3086,8 +3039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Aa7%3A21&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A19%3Ae1%3A37&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3097,7 +3050,7 @@ interactions: trailer: {} content_length: 516 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":1}' headers: Content-Length: - "516" @@ -3106,7 +3059,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3116,11 +3069,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25cee086-fe48-43ce-bbc8-903a2567c304 + - 3d2e1373-922d-4701-b6a7-a1c710908d3e status: 200 OK code: 200 - duration: 56.369315ms - - id: 63 + duration: 63.965417ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3135,8 +3088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3146,7 +3099,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3155,7 +3108,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3165,11 +3118,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e455580-bba0-4bab-82d6-fad90f70a23d + - 1d670701-df03-40e7-b461-0caf0bfff829 status: 200 OK code: 200 - duration: 23.566332ms - - id: 64 + duration: 21.764625ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3184,8 +3137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3195,7 +3148,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3204,7 +3157,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3214,11 +3167,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a941cf6-44fc-408e-b4b1-a85601e78d15 + - db8a8241-b1cd-42dc-916a-38ec7ccdc778 status: 200 OK code: 200 - duration: 25.075177ms - - id: 65 + duration: 23.661375ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3233,8 +3186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e5bad572-1b6a-4eee-928d-4c36ce5eda45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad method: GET response: proto: HTTP/2.0 @@ -3242,18 +3195,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.368466Z","custom_routes_propagation_enabled":false,"id":"e5bad572-1b6a-4eee-928d-4c36ce5eda45","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.368466Z"}' + body: '{"created_at":"2025-06-30T15:09:04.147579Z","custom_routes_propagation_enabled":true,"id":"3b95758e-9efa-4962-85ba-d47e1a0d85ad","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-06-30T15:09:04.191506Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3263,11 +3216,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a470ba8-1761-4013-a48a-4aa38f4a70ef + - 7f994ca9-a022-4624-b824-04ef645311bc status: 200 OK code: 200 - duration: 39.005246ms - - id: 66 + duration: 27.688541ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3282,8 +3235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 method: GET response: proto: HTTP/2.0 @@ -3291,18 +3244,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1061 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:04.143317Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:09:04.143317Z","id":"47e7c108-db18-488c-b845-a7f179d5a9c3","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:09:04.143317Z","id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:aed1::/64","updated_at":"2025-06-30T15:09:04.143317Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:09:19.447080Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1331" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3312,11 +3265,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f52a8b4c-ae1e-412b-aa28-49a603581685 + - baad16d2-ad45-48c1-aaa5-4f5979307595 status: 200 OK code: 200 - duration: 41.794727ms - - id: 67 + duration: 29.656833ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3331,8 +3284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -3340,18 +3293,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 1329 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.399508Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"9dca58e8-3089-4619-bac4-75407ecdc030","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.399508Z","id":"1d59aa6d-db53-4660-8525-d52609fca748","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.32.0/22","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"},{"created_at":"2025-05-16T13:39:33.399508Z","id":"c3b335ef-8a7e-4c14-aa48-4165590ff528","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:74e7::/64","updated_at":"2025-05-16T13:39:33.399508Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}],"tags":[],"updated_at":"2025-05-16T13:39:54.376804Z","vpc_id":"1ec1ecb6-8f58-4f7c-92cc-53c2a5ae519c"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1061" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:34 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3361,11 +3314,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b70b6ab-5f90-431a-a682-78704519f39e + - 1d56ef8c-2eb9-4c2b-9cd0-d74074e0f4fa status: 200 OK code: 200 - duration: 42.288225ms - - id: 68 + duration: 29.851584ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3380,8 +3333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -3391,7 +3344,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -3400,7 +3353,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3410,11 +3363,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce33aac3-fbdd-410e-8a28-c0e9c86f117d + - a2cce67d-6b28-490a-ad65-fafbe7baec5b status: 200 OK code: 200 - duration: 91.946294ms - - id: 69 + duration: 53.577209ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3429,8 +3382,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -3438,18 +3391,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3459,11 +3412,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e575514-e79a-4f01-a84b-c9fd62697af0 + - 385c6e5a-9863-4d21-91fe-78937a769493 status: 200 OK code: 200 - duration: 27.621651ms - - id: 70 + duration: 34.838041ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3478,8 +3431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=9dca58e8-3089-4619-bac4-75407ecdc030&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=f995b2d9-6081-4718-83bc-380cbcfd16fd&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=cd0c9e65-c9d0-40d1-89ee-4fb544913041&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=976a0e68-660d-47b4-9227-c5b5adc6e37d&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -3487,18 +3440,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 518 + content_length: 522 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-05-16T13:39:47.631585Z","id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","mac_address":"02:00:00:14:2B:A0","name":"tf-pn-loving-wescoff","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:48.139638Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:09:11.984450Z","id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","mac_address":"02:00:00:17:DC:32","name":"tf-pn-inspiring-jennings","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:13.242916Z","zone":null}],"total_count":1}' headers: Content-Length: - - "518" + - "522" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:54 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3508,11 +3461,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe262bdd-1b20-4f3a-aba5-d2bb71b495a1 + - 67f9b0e7-fdbd-4e58-971a-ad9c62ad2423 status: 200 OK code: 200 - duration: 141.652786ms - - id: 71 + duration: 48.572417ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3527,8 +3480,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -3536,18 +3489,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:53.400941+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:15.656813+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2314" + - "2313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3557,11 +3510,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 151c7f15-a1e6-4c02-9ad4-61a999f6a137 + - 62804b93-acf0-4897-8f8a-0fb3c8da509f status: 200 OK code: 200 - duration: 261.612105ms - - id: 72 + duration: 157.620917ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3576,8 +3529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -3587,7 +3540,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f4fff691-082e-4295-bcab-2490f54fd111","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","type":"not_found"}' headers: Content-Length: - "143" @@ -3596,7 +3549,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3606,11 +3559,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b870d5c-3d8a-4271-8967-2c82c5fab9d3 + - 05910d44-9315-42f7-b598-286d6ef2f5df status: 404 Not Found code: 404 - duration: 37.412232ms - - id: 73 + duration: 37.16825ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3625,8 +3578,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -3636,7 +3589,7 @@ interactions: trailer: {} content_length: 673 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:48.103517Z","id":"f4fff691-082e-4295-bcab-2490f54fd111","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:48.103517Z","id":"55f45b5b-53db-4c19-b1eb-eb3ba207d651","product_resource_id":"5d941147-d87c-4559-a491-3f4172ab568b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:48.103517Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:11.211237Z","id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:09:11.211237Z","id":"0ec22fc7-e404-4e30-9292-b748c81e2920","product_resource_id":"49813d4b-fec4-4726-b997-006e189c6925","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:09:11.211237Z","zone":"fr-par-1"}' headers: Content-Length: - "673" @@ -3645,7 +3598,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3655,11 +3608,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e3d01f6-2914-4d14-b0dc-dfa8010d5896 + - d065e906-84a5-47fb-874f-fcb993905e02 status: 200 OK code: 200 - duration: 50.137212ms - - id: 74 + duration: 48.230458ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3674,8 +3627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/user_data + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/user_data method: GET response: proto: HTTP/2.0 @@ -3694,7 +3647,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3704,11 +3657,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 688be43d-e8ed-4c67-85b8-98e145ecaba1 + - f711a01e-b32e-483d-9c10-a70dd4d7f358 status: 200 OK code: 200 - duration: 74.552173ms - - id: 75 + duration: 70.522708ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3723,8 +3676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics method: GET response: proto: HTTP/2.0 @@ -3734,7 +3687,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -3743,9 +3696,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:35 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3755,13 +3708,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89906ea8-e8f8-436d-ae9b-7c53898474de + - 5a5b4e5a-654b-4722-9d0b-7fba85924d6d X-Total-Count: - "1" status: 200 OK code: 200 - duration: 839.179888ms - - id: 76 + duration: 84.827291ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3776,8 +3729,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=d2ca399c-773c-452e-b9dd-b55ec9ba4b51&resource_type=instance_private_nic + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=67a85d6c-b59a-4e7b-b0a0-3b360127c1f0&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3785,18 +3738,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1034 + content_length: 1033 uncompressed: false - body: '{"ips":[{"address":"fd63:256c:45f7:74e7:150a:dde8:af54:60f2/64","created_at":"2025-05-16T13:39:56.876619Z","id":"d837cdd6-6c8a-4faa-861a-10561e5392b0","is_ipv6":true,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c3b335ef-8a7e-4c14-aa48-4165590ff528"},"tags":[],"updated_at":"2025-05-16T13:39:56.876619Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:aed1:882c:374:faab:c504/64","created_at":"2025-06-30T15:09:22.036044Z","id":"e77dff39-b0d0-4873-b622-6959c378a866","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"b17b9f0d-ebff-4408-9ba5-d4ed35771805"},"tags":[],"updated_at":"2025-06-30T15:09:22.036044Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1034" + - "1033" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3806,11 +3759,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9097d07f-3016-499f-9749-57e7c9af0176 + - 82d1cd67-77ae-474e-b3b5-799da75c0f08 status: 200 OK code: 200 - duration: 36.789083ms - - id: 77 + duration: 35.0225ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3825,8 +3778,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Aa7%3A21&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A19%3Ae1%3A37&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3836,7 +3789,7 @@ interactions: trailer: {} content_length: 516 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":1}' headers: Content-Length: - "516" @@ -3845,7 +3798,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3855,11 +3808,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f37cfda3-d9c4-49c3-9a2c-339246f7718d + - fdd1a132-7115-434b-b374-e771fe219a82 status: 200 OK code: 200 - duration: 492.767419ms - - id: 78 + duration: 48.922208ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3874,8 +3827,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3885,7 +3838,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3894,7 +3847,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3904,11 +3857,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9e8c6e97-c131-4d26-9b74-882d01abc8b0 + - 88030ea2-b86d-4106-b201-15a1b4345122 status: 200 OK code: 200 - duration: 24.402319ms - - id: 79 + duration: 23.526375ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3923,8 +3876,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3934,7 +3887,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3943,7 +3896,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3953,11 +3906,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cda7bcc5-7f1b-4038-a2f6-2e3eccecf8b6 + - 803800a9-a345-4a3f-9b4a-ae129ec0d6ee status: 200 OK code: 200 - duration: 28.573085ms - - id: 80 + duration: 23.725ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3972,8 +3925,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -3983,7 +3936,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -3992,7 +3945,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:36 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4002,11 +3955,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c32393c-25de-48fc-8fda-28ec54c34f47 + - 56b5c318-1e58-4282-a077-299cb6cbc008 status: 200 OK code: 200 - duration: 28.305653ms - - id: 81 + duration: 29.101291ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4021,8 +3974,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A12%3Aa7%3A21&order_by=created_at_desc&page=1&resource_type=unknown_type + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A19%3Ae1%3A37&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -4032,7 +3985,7 @@ interactions: trailer: {} content_length: 516 uncompressed: false - body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-05-16T13:39:56.499476Z","id":"6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","mac_address":"02:00:00:12:A7:21","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"1d59aa6d-db53-4660-8525-d52609fca748"},"tags":[],"updated_at":"2025-05-16T13:39:56.499476Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:09:19.779991Z","id":"7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","mac_address":"02:00:00:19:E1:37","name":"Scaleway Instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"47e7c108-db18-488c-b845-a7f179d5a9c3"},"tags":[],"updated_at":"2025-06-30T15:09:19.779991Z","zone":null}],"total_count":1}' headers: Content-Length: - "516" @@ -4041,7 +3994,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4051,11 +4004,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 586524d0-3bb4-4894-b3b2-5a7139e095cf + - 072a6e2f-88bc-4f41-87e6-cb338740f541 status: 200 OK code: 200 - duration: 51.231947ms - - id: 82 + duration: 54.8905ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4070,8 +4023,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -4081,7 +4034,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -4090,7 +4043,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4100,11 +4053,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01af262c-2a14-4c06-8a45-0972b280978c + - 1d31663f-2eb5-4fe8-b05d-a63014eec8aa status: 200 OK code: 200 - duration: 70.568161ms - - id: 83 + duration: 22.082042ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4119,8 +4072,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -4130,7 +4083,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -4139,7 +4092,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:55 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4149,11 +4102,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a43b2d9-d897-4b53-a1fb-81a18328bd98 + - f2f4508b-31d2-40b9-86ce-6662b7ebc52f status: 200 OK code: 200 - duration: 83.502561ms - - id: 84 + duration: 21.767291ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4168,8 +4121,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: GET response: proto: HTTP/2.0 @@ -4179,7 +4132,7 @@ interactions: trailer: {} content_length: 281 uncompressed: false - body: '{"created_at":"2025-05-16T13:40:33.819042Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"a07e369a-bef5-442b-b009-01d615eac04d","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-05-16T13:40:33.819042Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:54.258883Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"8a1b5376-25f8-4de9-81fe-ac4125bf9f8f","private_ip":"172.16.32.3","private_port":42,"protocol":"both","public_port":42,"updated_at":"2025-06-30T15:09:54.258883Z","zone":"fr-par-1"}' headers: Content-Length: - "281" @@ -4188,7 +4141,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4198,11 +4151,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1941781f-eb60-44aa-97cf-7905cf780572 + - d5c2abcf-763f-47c3-8d0f-1454bb6963f8 status: 200 OK code: 200 - duration: 26.866484ms - - id: 85 + duration: 503.260625ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4217,8 +4170,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -4226,18 +4179,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4247,11 +4200,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5be1e8ff-330b-4581-90c5-9416965b8874 + - 76d75dc1-d151-48f6-b91a-d83177b8ae5e status: 200 OK code: 200 - duration: 28.472005ms - - id: 86 + duration: 29.887375ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4266,8 +4219,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/a07e369a-bef5-442b-b009-01d615eac04d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3b95758e-9efa-4962-85ba-d47e1a0d85ad method: DELETE response: proto: HTTP/2.0 @@ -4284,7 +4237,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4294,11 +4247,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4b24dcb3-f1bf-4fd9-ac33-f9bfd9946a68 + - 9ed89e2f-41aa-4f03-aea7-f177c95eb9fc status: 204 No Content code: 204 - duration: 46.417203ms - - id: 87 + duration: 569.707584ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4313,8 +4266,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/e5bad572-1b6a-4eee-928d-4c36ce5eda45 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/pat-rules/8a1b5376-25f8-4de9-81fe-ac4125bf9f8f method: DELETE response: proto: HTTP/2.0 @@ -4331,7 +4284,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4341,11 +4294,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 401bad0e-a2f8-4ad7-b66f-ef425fcb70a0 + - 982026ed-19ed-4bd0-83c3-1918acabf5bc status: 204 No Content code: 204 - duration: 130.257852ms - - id: 88 + duration: 45.532583ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4360,8 +4313,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -4369,18 +4322,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1331 + content_length: 1329 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1331" + - "1329" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:37 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4390,11 +4343,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4793b8c2-f357-4812-abd9-d9cea6c85558 + - 7b5e1aab-ca6f-4775-acea-42902bcd9abe status: 200 OK code: 200 - duration: 26.766164ms - - id: 89 + duration: 30.817542ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4409,8 +4362,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -4420,7 +4373,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:58.261031Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:09:23.731925Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -4429,7 +4382,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4439,11 +4392,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85a02a81-2a6b-4f98-800c-5eec9404ed1b + - c8af3343-2e7a-4420-835c-39e5a28bc28b status: 200 OK code: 200 - duration: 287.794929ms - - id: 90 + duration: 50.030334ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4458,8 +4411,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: DELETE response: proto: HTTP/2.0 @@ -4469,7 +4422,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T13:40:38.228014Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:09:56.547291Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -4478,7 +4431,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4488,11 +4441,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 766fc99b-1800-4e99-b8c6-0582587e38f9 + - 59302e66-8b67-4dbd-a35a-586df832b5ce status: 200 OK code: 200 - duration: 73.246394ms - - id: 91 + duration: 79.337208ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4507,8 +4460,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -4516,18 +4469,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2314 + content_length: 2313 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:39:53.400941+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:15.656813+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2314" + - "2313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4537,11 +4490,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de5869fa-370f-4ccd-b78a-0d3cfb54d5db + - 82f0f34d-78dc-4e17-b3b3-900fd61f2ce4 status: 200 OK code: 200 - duration: 394.453041ms - - id: 92 + duration: 133.964833ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4556,8 +4509,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -4565,18 +4518,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 420 + content_length: 673 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:47.757766Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","ipam_ip_id":"850130f9-a317-4a23-9ba2-27fbdf0fd637","mac_address":"02:00:00:14:2B:A0","masquerade_enabled":true,"private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T13:40:38.228014Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:11.211237Z","id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:09:11.211237Z","id":"0ec22fc7-e404-4e30-9292-b748c81e2920","product_resource_id":"49813d4b-fec4-4726-b997-006e189c6925","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:09:11.211237Z","zone":"fr-par-1"}' headers: Content-Length: - - "420" + - "673" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4586,11 +4539,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 586f626d-5d06-4c3f-9d8c-d86095e5d267 + - b99964e6-7840-492c-91b2-d5131ebf14fb status: 200 OK code: 200 - duration: 47.12548ms - - id: 93 + duration: 43.332917ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4605,8 +4558,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -4614,18 +4567,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 673 + content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:48.103517Z","id":"f4fff691-082e-4295-bcab-2490f54fd111","last_detached_at":null,"name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[{"created_at":"2025-05-16T13:39:48.103517Z","id":"55f45b5b-53db-4c19-b1eb-eb3ba207d651","product_resource_id":"5d941147-d87c-4559-a491-3f4172ab568b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:39:48.103517Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:12.786520Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","ipam_ip_id":"84db1688-9aa5-4f8e-a5ac-811267b80b24","mac_address":"02:00:00:17:DC:32","masquerade_enabled":true,"private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:09:56.547291Z","zone":"fr-par-1"}' headers: Content-Length: - - "673" + - "420" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4635,11 +4588,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb0b52e0-8245-422b-82ae-e96b9daf7b43 + - 51c6fb21-e92a-4092-8480-3a9ed4f34b4e status: 200 OK code: 200 - duration: 56.053811ms - - id: 94 + duration: 50.575167ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4656,8 +4609,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/action + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/action method: POST response: proto: HTTP/2.0 @@ -4667,7 +4620,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/5d941147-d87c-4559-a491-3f4172ab568b/action","href_result":"/servers/5d941147-d87c-4559-a491-3f4172ab568b","id":"2b7b0876-2813-4b85-ad20-da8e4b123148","progress":0,"started_at":"2025-05-16T13:40:38.595087+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/49813d4b-fec4-4726-b997-006e189c6925/action","href_result":"/servers/49813d4b-fec4-4726-b997-006e189c6925","id":"0d2a8e8e-920a-4bd0-b957-f90b8b4ca489","progress":0,"started_at":"2025-06-30T15:09:56.805530+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -4676,9 +4629,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2b7b0876-2813-4b85-ad20-da8e4b123148 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/0d2a8e8e-920a-4bd0-b957-f90b8b4ca489 Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4688,11 +4641,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 739456aa-88c4-4453-95c0-b2ea5eeab765 + - b3326bf2-d434-43db-bbbe-5c8f918aa738 status: 202 Accepted code: 202 - duration: 435.744678ms - - id: 95 + duration: 215.24125ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4707,8 +4660,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -4716,18 +4669,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2273 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:40:38.437597+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:56.645761+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:38 GMT + - Mon, 30 Jun 2025 15:09:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4737,11 +4690,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28cb6cef-1f7c-4fa8-9396-6cfcad3b414f + - 2b41fa07-93b2-4759-9809-5a8952b8956f status: 200 OK code: 200 - duration: 190.381593ms - - id: 96 + duration: 155.442458ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4756,8 +4709,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/f995b2d9-6081-4718-83bc-380cbcfd16fd + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/976a0e68-660d-47b4-9227-c5b5adc6e37d method: GET response: proto: HTTP/2.0 @@ -4767,7 +4720,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"f995b2d9-6081-4718-83bc-380cbcfd16fd","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"976a0e68-660d-47b4-9227-c5b5adc6e37d","type":"not_found"}' headers: Content-Length: - "136" @@ -4776,7 +4729,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:43 GMT + - Mon, 30 Jun 2025 15:10:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4786,11 +4739,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e21ba8e3-4413-4666-9bd4-5b249bb82bae + - c0efc7cb-0b59-41d4-9b45-669a73b2e135 status: 404 Not Found code: 404 - duration: 36.946018ms - - id: 97 + duration: 27.159584ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4805,8 +4758,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -4814,18 +4767,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 915 + content_length: 913 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:58.453789Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:09:23.917322Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "915" + - "913" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:43 GMT + - Mon, 30 Jun 2025 15:10:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4835,11 +4788,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28e490da-3e26-487e-b6a2-f6115042780a + - 82ccd2b3-4060-4cb0-9bd5-c1bbf4c78168 status: 200 OK code: 200 - duration: 28.76983ms - - id: 98 + duration: 33.851167ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4854,8 +4807,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a?delete_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -4863,18 +4816,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 916 + content_length: 914 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.848785Z","gateway_networks":[],"id":"ad702042-e038-4988-bd75-f0571484fc6a","ipv4":{"address":"163.172.171.220","created_at":"2025-05-16T13:39:34.832921Z","gateway_id":"ad702042-e038-4988-bd75-f0571484fc6a","id":"30300600-f25e-4b0b-86f1-1ed0bf9c12c2","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"220-171-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.832921Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-loving-wescoff","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:40:43.402607Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:09:04.895977Z","gateway_networks":[],"id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","ipv4":{"address":"51.158.69.35","created_at":"2025-06-30T15:09:04.866128Z","gateway_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","id":"00a4de2d-0766-4c3d-9ba8-111cc5503f33","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"35-69-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:09:04.866128Z","zone":"fr-par-1"},"is_legacy":false,"name":"tf-pn-inspiring-jennings","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:10:01.735222Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "916" + - "914" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:43 GMT + - Mon, 30 Jun 2025 15:10:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4884,11 +4837,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71993294-e601-4296-86b7-c7360170eced + - 5c170807-453c-4632-bba5-f0610c75e4cf status: 200 OK code: 200 - duration: 53.411699ms - - id: 99 + duration: 78.948542ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4903,8 +4856,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/ad702042-e038-4988-bd75-f0571484fc6a + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/e8f23ea0-0418-4ed7-99be-cb32f57e8039 method: GET response: proto: HTTP/2.0 @@ -4914,7 +4867,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"ad702042-e038-4988-bd75-f0571484fc6a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"e8f23ea0-0418-4ed7-99be-cb32f57e8039","type":"not_found"}' headers: Content-Length: - "128" @@ -4923,7 +4876,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:43 GMT + - Mon, 30 Jun 2025 15:10:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4933,11 +4886,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4cd76c94-ddfb-43ee-809f-97d4fdb1bcaa + - 52bf87b3-8a3d-4102-a5b4-1ef055322737 status: 404 Not Found code: 404 - duration: 76.564498ms - - id: 100 + duration: 32.590334ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4952,8 +4905,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -4961,18 +4914,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2273 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:40:38.437597+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:56.645761+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:44 GMT + - Mon, 30 Jun 2025 15:10:02 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4982,11 +4935,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98d9482f-0dca-41f7-8984-57065fac813e + - 9b06bc29-03a0-4755-b9a3-8794f1c6cbe1 status: 200 OK code: 200 - duration: 349.481156ms - - id: 101 + duration: 212.649625ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5001,8 +4954,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -5010,18 +4963,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2274 + content_length: 2273 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"37","hypervisor_id":"1902","node_id":"40","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:40:38.437597+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"41","hypervisor_id":"602","node_id":"22","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:09:56.645761+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2274" + - "2273" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:49 GMT + - Mon, 30 Jun 2025 15:10:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5031,11 +4984,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40813e0c-1b9a-4dfc-acc2-04c57b148236 + - c2141904-9cce-43f6-814b-af90a5806c70 status: 200 OK code: 200 - duration: 165.194539ms - - id: 102 + duration: 160.759042ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5050,8 +5003,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -5061,7 +5014,7 @@ interactions: trailer: {} content_length: 2157 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:40:54.339174+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:10:11.570728+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2157" @@ -5070,7 +5023,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:54 GMT + - Mon, 30 Jun 2025 15:10:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5080,11 +5033,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3412658a-2d94-4834-b48b-53e05e19d296 + - ee098504-d825-4180-bc1a-b60a8be24717 status: 200 OK code: 200 - duration: 666.171542ms - - id: 103 + duration: 153.1605ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5099,8 +5052,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics method: GET response: proto: HTTP/2.0 @@ -5110,7 +5063,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5119,9 +5072,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:55 GMT + - Mon, 30 Jun 2025 15:10:12 GMT Link: - - ; rel="last" + - ; rel="last" Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5131,13 +5084,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ceaa18d8-0ba9-47c0-b714-93a96e5d8df8 + - 12b9c061-3ae5-4299-9465-fdaf404874fd X-Total-Count: - "1" status: 200 OK code: 200 - duration: 69.716626ms - - id: 104 + duration: 57.921292ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5152,8 +5105,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -5163,7 +5116,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-05-16T13:39:56.017109+00:00","id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","ipam_ip_ids":["6fe97474-503b-4dc8-ada0-ef9ad3cbff6f","d837cdd6-6c8a-4faa-861a-10561e5392b0"],"mac_address":"02:00:00:12:a7:21","modification_date":"2025-05-16T13:40:28.105227+00:00","private_network_id":"9dca58e8-3089-4619-bac4-75407ecdc030","server_id":"5d941147-d87c-4559-a491-3f4172ab568b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:09:18.149854+00:00","id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","ipam_ip_ids":["7cc4b084-f3c3-4bcb-93cc-19c83bf2a896","e77dff39-b0d0-4873-b622-6959c378a866"],"mac_address":"02:00:00:19:e1:37","modification_date":"2025-06-30T15:09:49.998817+00:00","private_network_id":"cd0c9e65-c9d0-40d1-89ee-4fb544913041","server_id":"49813d4b-fec4-4726-b997-006e189c6925","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5172,7 +5125,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:55 GMT + - Mon, 30 Jun 2025 15:10:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5182,11 +5135,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db2e56f9-fc1b-43d6-951d-514719222940 + - 9a98814a-5f1c-4293-af0b-82acf1444dd4 status: 200 OK code: 200 - duration: 65.973494ms - - id: 105 + duration: 70.007458ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5201,8 +5154,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: DELETE response: proto: HTTP/2.0 @@ -5219,7 +5172,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:55 GMT + - Mon, 30 Jun 2025 15:10:12 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5229,11 +5182,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a521539a-82f2-4d20-a986-7a34f8ca50be + - 986ad9fb-d47f-48dc-b440-19decba97457 status: 204 No Content code: 204 - duration: 313.241413ms - - id: 106 + duration: 309.723791ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5248,8 +5201,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b/private_nics/d2ca399c-773c-452e-b9dd-b55ec9ba4b51 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925/private_nics/67a85d6c-b59a-4e7b-b0a0-3b360127c1f0 method: GET response: proto: HTTP/2.0 @@ -5259,7 +5212,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"d2ca399c-773c-452e-b9dd-b55ec9ba4b51","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"67a85d6c-b59a-4e7b-b0a0-3b360127c1f0","type":"not_found"}' headers: Content-Length: - "148" @@ -5268,7 +5221,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:55 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5278,11 +5231,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c26784f2-6c52-4533-9d06-f7aeeed31d83 + - d25404ac-a7e2-44d7-9991-395b791e82f9 status: 404 Not Found code: 404 - duration: 59.295868ms - - id: 107 + duration: 67.570959ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5297,8 +5250,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -5308,7 +5261,7 @@ interactions: trailer: {} content_length: 1699 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-05-16T13:39:47.973026+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"5d941147-d87c-4559-a491-3f4172ab568b","image":{"arch":"x86_64","creation_date":"2025-02-03T13:27:56.049932+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"6465cef1-374a-451c-bc2d-e2d179625dad","modification_date":"2025-02-03T13:27:56.049932+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ae:92:9f","maintenances":[],"modification_date":"2025-05-16T13:40:54.339174+00:00","name":"Scaleway Instance","organization":"fa1e3217-dc80-42ac-85c3-3f034b78b552","placement_group":null,"private_ip":null,"private_nics":[],"project":"fa1e3217-dc80-42ac-85c3-3f034b78b552","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"dccbeacb-b588-4c47-8eaf-b05d1469d3cb","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"f4fff691-082e-4295-bcab-2490f54fd111","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"DEV1-S","creation_date":"2025-06-30T15:09:11.084734+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"scaleway-instance","id":"49813d4b-fec4-4726-b997-006e189c6925","image":{"arch":"x86_64","creation_date":"2025-06-26T07:46:26.681043+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2de2ba54-63f1-41f1-bd8a-630cf81c7939","modification_date":"2025-06-26T07:46:26.681043+00:00","name":"Debian Bullseye","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:91","maintenances":[],"modification_date":"2025-06-30T15:10:11.570728+00:00","name":"Scaleway Instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1699" @@ -5317,7 +5270,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:55 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5327,11 +5280,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a21eb690-995c-494f-9b99-c07401fc2beb + - 24acc10e-3080-4876-a1f4-e2e0313bbc34 status: 200 OK code: 200 - duration: 511.889136ms - - id: 108 + duration: 149.780541ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5346,8 +5299,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: DELETE response: proto: HTTP/2.0 @@ -5364,7 +5317,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:56 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5374,11 +5327,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 980490d6-1067-490b-8bd8-6f18a7dcc4a7 + - b52dd2ee-d48f-47b2-9195-32c804865f99 status: 204 No Content code: 204 - duration: 524.912618ms - - id: 109 + duration: 205.528416ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5393,8 +5346,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/5d941147-d87c-4559-a491-3f4172ab568b + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/49813d4b-fec4-4726-b997-006e189c6925 method: GET response: proto: HTTP/2.0 @@ -5404,7 +5357,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"5d941147-d87c-4559-a491-3f4172ab568b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"49813d4b-fec4-4726-b997-006e189c6925","type":"not_found"}' headers: Content-Length: - "143" @@ -5413,7 +5366,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:56 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5423,11 +5376,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ae6d2f0-f9f8-4615-b056-2c7a142fb5a5 + - 53ac1647-b411-445b-9e91-9c5a5fd9d26e status: 404 Not Found code: 404 - duration: 84.869837ms - - id: 110 + duration: 93.319875ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5442,8 +5395,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -5453,7 +5406,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"f4fff691-082e-4295-bcab-2490f54fd111","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","type":"not_found"}' headers: Content-Length: - "143" @@ -5462,7 +5415,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:56 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5472,11 +5425,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6822020-8b75-44c2-80dd-794cf286478a + - 4a78e9bc-92c1-443a-809c-9317d2e4dbe9 status: 404 Not Found code: 404 - duration: 37.303307ms - - id: 111 + duration: 45.54975ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5491,8 +5444,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: GET response: proto: HTTP/2.0 @@ -5502,7 +5455,7 @@ interactions: trailer: {} content_length: 471 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:48.103517Z","id":"f4fff691-082e-4295-bcab-2490f54fd111","last_detached_at":"2025-05-16T13:40:56.546363Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"6ba10234-492c-443d-9f5d-2bea203f4fb2","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-05-16T13:40:56.546363Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:09:11.211237Z","id":"557d21ac-bd68-4268-aa8e-2bd6fe1d150a","last_detached_at":"2025-06-30T15:10:13.443274Z","name":"Debian Bullseye_sbs_volume_0","parent_snapshot_id":"ae1d4eff-73d2-4059-9294-c77a26b65c0f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:10:13.443274Z","zone":"fr-par-1"}' headers: Content-Length: - "471" @@ -5511,7 +5464,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:56 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5521,11 +5474,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 448e5d8e-627d-40de-92dd-f0f3f42c2316 + - 99bcb248-2101-4ecb-bfc6-16e490230612 status: 200 OK code: 200 - duration: 54.50159ms - - id: 112 + duration: 53.446667ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5540,8 +5493,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/f4fff691-082e-4295-bcab-2490f54fd111 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/557d21ac-bd68-4268-aa8e-2bd6fe1d150a method: DELETE response: proto: HTTP/2.0 @@ -5558,7 +5511,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:56 GMT + - Mon, 30 Jun 2025 15:10:13 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5568,11 +5521,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2b374bdf-23fc-4410-b3e2-659f02bd10f4 + - b250c179-e5a1-49f7-9ac5-2a2eee5fe7e3 status: 204 No Content code: 204 - duration: 87.782544ms - - id: 113 + duration: 74.488083ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5587,8 +5540,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/9dca58e8-3089-4619-bac4-75407ecdc030 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/cd0c9e65-c9d0-40d1-89ee-4fb544913041 method: DELETE response: proto: HTTP/2.0 @@ -5605,7 +5558,7 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:58 GMT + - Mon, 30 Jun 2025 15:10:15 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5615,7 +5568,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49a9309b-cbd3-4bcf-a6c0-d3045105137f + - c73509f9-7964-4ee6-9e14-8d43ea88bafa status: 204 No Content code: 204 - duration: 1.759925925s + duration: 2.315518125s diff --git a/internal/services/vpcgw/testdata/vpc-gateway-network-with-ipam-config.cassette.yaml b/internal/services/vpcgw/testdata/vpc-gateway-network-with-ipam-config.cassette.yaml index 0bcb85fc14..48848a8b06 100644 --- a/internal/services/vpcgw/testdata/vpc-gateway-network-with-ipam-config.cassette.yaml +++ b/internal/services/vpcgw/testdata/vpc-gateway-network-with-ipam-config.cassette.yaml @@ -12,13 +12,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my vpc","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 394 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.337582Z","custom_routes_propagation_enabled":false,"id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.337582Z"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":false,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.318042Z"}' headers: Content-Length: - "394" @@ -38,9 +38,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,48 +48,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d4987d5b-d240-4fbc-bdb8-85c449a8edf1 + - 20984e88-466e-49c8-bfc5-502afedc1ec4 status: 200 OK code: 200 - duration: 156.378632ms + duration: 492.824417ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ede3ac16-35dc-493c-ab58-4cc0363f2a16 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2/enable-custom-routes-propagation + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.337582Z","custom_routes_propagation_enabled":false,"id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":0,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.337582Z"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":true,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.379060Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,50 +99,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fb6e8ab1-d8f4-4c02-a831-cc19db7a7e81 + - 558baf51-94c0-4f1a-8c5b-1d553029e97e status: 200 OK code: 200 - duration: 56.621839ms + duration: 38.104792ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 165 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"pn_test_network","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":true,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.379060Z"}' headers: Content-Length: - - "1061" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:33 GMT + - Mon, 30 Jun 2025 15:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,28 +148,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 88d0ab25-e379-4fc2-bc65-96a84ed53fb3 + - efbfa6dd-1b11-4fdb-90e5-f63155661883 status: 200 OK code: 200 - duration: 503.351281ms + duration: 61.517542ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 207 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"pn_test_network","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -178,7 +180,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - "1061" @@ -187,9 +189,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Mon, 30 Jun 2025 15:08:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +199,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d43ab70-7115-4e40-8fce-50dfc16281cb + - 9531ebf2-6641-4615-92e9-f71192f5b4ee status: 200 OK code: 200 - duration: 93.766235ms + duration: 658.063958ms - id: 4 request: proto: HTTP/1.1 @@ -212,13 +214,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","name":"foobar","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"foobar","tags":[],"type":"VPC-GW-S","enable_smtp":false,"enable_bastion":false}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways method: POST response: @@ -227,20 +229,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 884 + content_length: 882 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.627778Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:15.059932Z","zone":"fr-par-1"}' headers: Content-Length: - - "884" + - "882" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Mon, 30 Jun 2025 15:08:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -248,10 +250,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 998f2bd6-30ea-4f08-914f-97c749c06f06 + - 17598997-2f71-48a5-8e4b-d5bc6858b878 status: 200 OK code: 200 - duration: 1.43983294s + duration: 1.26204825s - id: 5 request: proto: HTTP/1.1 @@ -267,8 +269,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -276,20 +278,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 902 + content_length: 1061 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:34.665381Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - - "902" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:34 GMT + - Mon, 30 Jun 2025 15:08:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -297,10 +299,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a31eb8e1-fe16-44c4-85da-261a9511c9f4 + - 04bcf4ee-b2b1-4a5e-92f8-f2c00f3d731e status: 200 OK code: 200 - duration: 56.110504ms + duration: 39.915542ms - id: 6 request: proto: HTTP/1.1 @@ -316,8 +318,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -325,20 +327,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 899 + content_length: 900 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:39.588002Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"allocating","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:15.105779Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "899" + - "900" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Mon, 30 Jun 2025 15:08:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3f64949-6479-4448-a683-a0f22556484f + - 621cc4dd-0d72-422e-9175-1732200fe1cd status: 200 OK code: 200 - duration: 31.981695ms + duration: 51.646959ms - id: 7 request: proto: HTTP/1.1 @@ -365,8 +367,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -374,20 +376,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 899 + content_length: 901 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:39.588002Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:15.655154Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "899" + - "901" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Mon, 30 Jun 2025 15:08:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6dfbbe6f-df59-4100-8414-265247e077bb + - e656a078-c9d1-48b8-a2d7-2685e9e6894f status: 200 OK code: 200 - duration: 85.854175ms + duration: 32.244416ms - id: 8 request: proto: HTTP/1.1 @@ -414,8 +416,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -423,20 +425,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 899 + content_length: 897 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:39.588002Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:20.567074Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "899" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:39 GMT + - Mon, 30 Jun 2025 15:08:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,50 +446,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 82608855-6135-4433-95ec-3ae21fd6ffd0 + - f835e738-3bd2-4770-9ef8-6a8df825f70c status: 200 OK code: 200 - duration: 58.285749ms + duration: 53.026041ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 164 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","private_network_id":"d497c729-df85-4228-9138-162be5730af3","enable_masquerade":true,"push_default_route":true}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks - method: POST + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 384 + content_length: 897 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:41.323591Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:20.567074Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "384" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Mon, 30 Jun 2025 15:08:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -495,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2efe61b2-2a07-4011-8946-114818e1ab2e + - d4d435a3-ef93-47ff-a2dd-f6562736b685 status: 200 OK code: 200 - duration: 1.523409366s + duration: 29.928916ms - 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.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -523,20 +523,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1287 + content_length: 897 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:41.323591Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:41.418512Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:20.567074Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1287" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:41 GMT + - Mon, 30 Jun 2025 15:08:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -544,48 +544,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0fcedfd-c172-443d-9cdf-cfcab74c554a + - d1a25c1c-2dc8-421d-8758-b63c485af07d status: 200 OK code: 200 - duration: 248.323126ms + duration: 34.713916ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 164 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","enable_masquerade":true,"push_default_route":true}' form: {} headers: + Content-Type: + - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 - method: GET + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1287 + content_length: 384 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"created","updated_at":"2025-05-16T13:39:41.323591Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:41.418512Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:08:27.598416Z","zone":"fr-par-1"}' headers: Content-Length: - - "1287" + - "384" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:46 GMT + - Mon, 30 Jun 2025 15:08:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -593,10 +595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f0b6ce97-dcc7-43f3-a06a-49afb1e8baa9 + - ebefc632-d403-4b8e-932a-63c13d88a309 status: 200 OK code: 200 - duration: 27.750976ms + duration: 2.361527458s - id: 12 request: proto: HTTP/1.1 @@ -612,8 +614,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -621,20 +623,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1325 + content_length: 1285 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"configuring","updated_at":"2025-05-16T13:39:47.101554Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:41.418512Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:08:27.598416Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:27.711753Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1325" + - "1285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:51 GMT + - Mon, 30 Jun 2025 15:08:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -642,10 +644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36221b3a-ad67-4b1c-b772-61619bd3402d + - cf76892d-eec0-44a0-9bdf-abf348c2ee3e status: 200 OK code: 200 - duration: 41.821612ms + duration: 29.865042ms - id: 13 request: proto: HTTP/1.1 @@ -661,8 +663,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -670,20 +672,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 1285 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"created","updated_at":"2025-06-30T15:08:27.598416Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"configuring","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:27.711753Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "1285" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Mon, 30 Jun 2025 15:08:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -691,10 +693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06dd0ac9-ea08-4088-a4d4-8f76a835f27b + - 604057d0-1807-49c9-9a84-707b500fd1c7 status: 200 OK code: 200 - duration: 37.016728ms + duration: 32.37225ms - id: 14 request: proto: HTTP/1.1 @@ -710,8 +712,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -719,20 +721,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 1313 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "416" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Mon, 30 Jun 2025 15:08:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -740,10 +742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59686f6b-3e45-47b4-ab23-a05c6bde54b5 + - ccf7e88f-1c97-42bd-9bf1-3cdea428b1d0 status: 200 OK code: 200 - duration: 91.347036ms + duration: 32.08875ms - id: 15 request: proto: HTTP/1.1 @@ -759,8 +761,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -770,7 +772,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -779,9 +781,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Mon, 30 Jun 2025 15:08:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -789,10 +791,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 966a8dc1-cd94-4db1-b8a1-f42bdc1fc757 + - 05410ec1-1cf8-4a51-8e96-52f72c776ec3 status: 200 OK code: 200 - duration: 39.160581ms + duration: 76.661375ms - id: 16 request: proto: HTTP/1.1 @@ -808,8 +810,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -817,20 +819,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:56 GMT + - Mon, 30 Jun 2025 15:08:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -838,10 +840,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cab93a7e-876e-4504-a35d-7606791a32bd + - dd168b5c-05c3-45a0-812c-ac380fa01e31 status: 200 OK code: 200 - duration: 28.38359ms + duration: 44.121042ms - id: 17 request: proto: HTTP/1.1 @@ -857,8 +859,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d497c729-df85-4228-9138-162be5730af3&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -866,20 +868,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 1313 uncompressed: false - body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-05-16T13:39:41.218279Z","id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":"02:00:00:1E:04:CD","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:39:41.729531Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "504" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:08:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -887,10 +889,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ba85e8cf-136e-4698-9156-4af777da02d4 + - 4fff4ac2-1aa1-4feb-b169-b6f3ca7c2ad4 status: 200 OK code: 200 - duration: 101.863632ms + duration: 28.796916ms - id: 18 request: proto: HTTP/1.1 @@ -906,8 +908,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3293064f-f973-4025-a6ab-ff40db5edee0&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=51f2119d-fa18-451b-8f25-37dd6c41bcd3&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -915,20 +917,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 504 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-06-30T15:08:26.899175Z","id":"71f98296-5948-497a-b457-684ea07b7097","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":"02:00:00:1F:F3:A5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:28.100856Z","zone":null}],"total_count":1}' headers: Content-Length: - - "416" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -936,10 +938,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9eb5aac9-fadd-4dee-a90e-338c04c47676 + - 31f09f69-8515-41a6-b8db-278001029bd7 status: 200 OK code: 200 - duration: 51.512466ms + duration: 75.527875ms - id: 19 request: proto: HTTP/1.1 @@ -955,8 +957,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ede3ac16-35dc-493c-ab58-4cc0363f2a16 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -964,20 +966,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.337582Z","custom_routes_propagation_enabled":false,"id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.337582Z"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - - "394" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -985,10 +987,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6a301b1-2361-45f2-8c90-dafbe5745715 + - 4927d9f5-ed84-4704-af65-626ecc7582de status: 200 OK code: 200 - duration: 67.981971ms + duration: 42.364708ms - id: 20 request: proto: HTTP/1.1 @@ -1004,8 +1006,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2 method: GET response: proto: HTTP/2.0 @@ -1013,20 +1015,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 393 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":true,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.379060Z"}' headers: Content-Length: - - "1315" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1034,10 +1036,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c0e31303-743a-439f-98f4-33c2975872e4 + - f662628d-d87c-423a-95fe-32f527677c9f status: 200 OK code: 200 - duration: 85.239132ms + duration: 32.168042ms - id: 21 request: proto: HTTP/1.1 @@ -1053,8 +1055,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -1062,20 +1064,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1061 + content_length: 1313 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:39:48.067478Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1061" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:57 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1083,10 +1085,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7822574-9276-4598-85dc-f42745337e34 + - 4c615905-ec5e-4bc6-b1a8-89e4b5be3aef status: 200 OK code: 200 - duration: 28.41086ms + duration: 31.985834ms - id: 22 request: proto: HTTP/1.1 @@ -1102,8 +1104,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -1111,20 +1113,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:34.559394Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - - "416" + - "1061" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1132,10 +1134,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca4f24fa-7795-4584-b958-bc6ca22cbd67 + - 67c0b80b-3479-4ec7-b1df-e815c97b7d75 status: 200 OK code: 200 - duration: 67.31838ms + duration: 29.483375ms - id: 23 request: proto: HTTP/1.1 @@ -1151,8 +1153,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1160,20 +1162,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1181,10 +1183,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 820b0354-ef2b-4b9f-8ec0-8015cb196239 + - 718dbd32-fc32-4762-bc63-b3fb3ce321fb status: 200 OK code: 200 - duration: 30.368961ms + duration: 71.968416ms - id: 24 request: proto: HTTP/1.1 @@ -1200,8 +1202,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d497c729-df85-4228-9138-162be5730af3&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -1209,20 +1211,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 504 + content_length: 1313 uncompressed: false - body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-05-16T13:39:41.218279Z","id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":"02:00:00:1E:04:CD","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:39:41.729531Z","zone":null}],"total_count":1}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "504" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1230,10 +1232,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 85c7fa2e-6c22-44b5-ad1b-e4bde27442ea + - c2a2babd-da7b-4836-a33a-546189b57817 status: 200 OK code: 200 - duration: 64.376925ms + duration: 28.823208ms - id: 25 request: proto: HTTP/1.1 @@ -1249,8 +1251,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ede3ac16-35dc-493c-ab58-4cc0363f2a16 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3293064f-f973-4025-a6ab-ff40db5edee0&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=51f2119d-fa18-451b-8f25-37dd6c41bcd3&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1258,20 +1260,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 504 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.337582Z","custom_routes_propagation_enabled":false,"id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.337582Z"}' + body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-06-30T15:08:26.899175Z","id":"71f98296-5948-497a-b457-684ea07b7097","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":"02:00:00:1F:F3:A5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:28.100856Z","zone":null}],"total_count":1}' headers: Content-Length: - - "394" + - "504" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1279,10 +1281,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6845d6c6-b1a5-483d-ad28-a1a9eb25ed6f + - dd2d5703-529d-40f3-b2a5-6a43e87b791c status: 200 OK code: 200 - duration: 40.451587ms + duration: 73.752708ms - id: 26 request: proto: HTTP/1.1 @@ -1298,8 +1300,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2 method: GET response: proto: HTTP/2.0 @@ -1307,20 +1309,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 393 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":true,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.379060Z"}' headers: Content-Length: - - "1315" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1328,10 +1330,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 836e606c-08c1-44c8-9cb6-9642e342b713 + - 114ed629-1f38-45bd-802a-82ac2c3e0a9c status: 200 OK code: 200 - duration: 43.880861ms + duration: 26.202292ms - id: 27 request: proto: HTTP/1.1 @@ -1347,8 +1349,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -1358,7 +1360,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:39:48.067478Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:34.559394Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - "1061" @@ -1367,9 +1369,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,10 +1379,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b28fc86-375a-46f0-9fd4-ee1e394101cf + - 0f7d1bd2-2d8b-4ab3-8681-e61d8b2a2b1c status: 200 OK code: 200 - duration: 59.759855ms + duration: 78.460542ms - id: 28 request: proto: HTTP/1.1 @@ -1396,8 +1398,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -1405,20 +1407,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 416 + content_length: 1313 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "416" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:58 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,10 +1428,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8e78d113-3b06-4cd8-b4fa-6918d01dfc35 + - 698207ea-4d88-4ccc-bf6c-9f10929e7a40 status: 200 OK code: 200 - duration: 73.521203ms + duration: 123.193083ms - id: 29 request: proto: HTTP/1.1 @@ -1445,8 +1447,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1454,20 +1456,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 416 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "416" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:59 GMT + - Mon, 30 Jun 2025 15:08:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1475,10 +1477,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34d5145b-98ae-4350-add9-d05cf8ad808b + - 5966598f-3f7c-48a1-a61f-b42b5dbacce6 status: 200 OK code: 200 - duration: 47.344698ms + duration: 45.630042ms - id: 30 request: proto: HTTP/1.1 @@ -1494,8 +1496,57 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d497c729-df85-4228-9138-162be5730af3&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1313 + uncompressed: false + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' + headers: + Content-Length: + - "1313" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:08:39 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6540e8c8-6f30-4c70-b6ec-7a427206fa1b + status: 200 OK + code: 200 + duration: 25.365958ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3293064f-f973-4025-a6ab-ff40db5edee0&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=51f2119d-fa18-451b-8f25-37dd6c41bcd3&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -1505,7 +1556,7 @@ interactions: trailer: {} content_length: 504 uncompressed: false - body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-05-16T13:39:41.218279Z","id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":"02:00:00:1E:04:CD","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:39:41.729531Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.2/22","created_at":"2025-06-30T15:08:26.899175Z","id":"71f98296-5948-497a-b457-684ea07b7097","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":"02:00:00:1F:F3:A5","name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:28.100856Z","zone":null}],"total_count":1}' headers: Content-Length: - "504" @@ -1514,9 +1565,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:59 GMT + - Mon, 30 Jun 2025 15:08:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1524,11 +1575,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d33d819b-48dc-423b-9707-ff31ec3a624e + - 3089b73c-8e53-4544-9eef-f4244cccdd11 status: 200 OK code: 200 - duration: 43.181315ms - - id: 31 + duration: 50.696ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1539,13 +1590,13 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","source":{"private_network_id":"d497c729-df85-4228-9138-162be5730af3"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0"},"is_ipv6":false,"address":"172.16.64.7","tags":[]}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips method: POST response: @@ -1556,7 +1607,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-05-16T13:39:59.919421Z","id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:39:59.919421Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:08:39.974998Z","id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:39.974998Z","zone":null}' headers: Content-Length: - "358" @@ -1565,9 +1616,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:39:59 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,11 +1626,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3b1ed4db-2a36-4099-aa16-ca8c176c8b34 + - 4c76a3a7-550b-437f-82e8-bba4f077dfb7 status: 200 OK code: 200 - duration: 352.557736ms - - id: 32 + duration: 750.485167ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1594,8 +1645,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/74984528-9ba7-4d59-9fdb-5ad58012a31d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/42fab6f1-13a0-498d-8dbc-1f2d0c64fb06 method: GET response: proto: HTTP/2.0 @@ -1605,7 +1656,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-05-16T13:39:59.919421Z","id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:39:59.919421Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:08:39.974998Z","id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:39.974998Z","zone":null}' headers: Content-Length: - "358" @@ -1614,9 +1665,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:00 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,11 +1675,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28571997-4d17-412d-925d-8d4deaaac4f6 + - 07514ec3-ff6e-4ea4-8f12-df54f6da8d45 status: 200 OK code: 200 - duration: 39.21625ms - - id: 33 + duration: 27.611875ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1643,8 +1694,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -1654,7 +1705,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:39:48.067478Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:34.559394Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - "1061" @@ -1663,9 +1714,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:00 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,11 +1724,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6a7a158-d95c-4293-bdde-c65252151e3e + - 8f6d38a2-3fe1-4c09-8c1e-18e86072629a status: 200 OK code: 200 - duration: 30.126379ms - - id: 34 + duration: 28.783292ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1692,8 +1743,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1703,7 +1754,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"81780257-70ce-4791-b84c-e3bf6e29b1ed","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:39:51.895282Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"71f98296-5948-497a-b457-684ea07b7097","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:36.757474Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -1712,9 +1763,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:00 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,11 +1773,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5601217f-3f5f-4f1c-b676-1639fdeada77 + - 25931515-1d5d-4527-8c19-56df37c3593b status: 200 OK code: 200 - duration: 73.95476ms - - id: 35 + duration: 49.307458ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1737,14 +1788,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"push_default_route":true,"ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d"}' + body: '{"push_default_route":true,"ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06"}' form: {} headers: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: PATCH response: proto: HTTP/2.0 @@ -1754,7 +1805,7 @@ interactions: trailer: {} content_length: 422 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"configuring","updated_at":"2025-05-16T13:40:00.353072Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:08:40.230107Z","zone":"fr-par-1"}' headers: Content-Length: - "422" @@ -1763,9 +1814,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:00 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1773,11 +1824,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fea9326-a8be-4f48-b82c-c38c95725d38 + - 80e45c42-d8a8-4603-9eef-b766a0ec1184 status: 200 OK code: 200 - duration: 606.696078ms - - id: 36 + duration: 224.213875ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1792,8 +1843,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1803,7 +1854,7 @@ interactions: trailer: {} content_length: 422 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"configuring","updated_at":"2025-05-16T13:40:00.353072Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"configuring","updated_at":"2025-06-30T15:08:40.230107Z","zone":"fr-par-1"}' headers: Content-Length: - "422" @@ -1812,9 +1863,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:00 GMT + - Mon, 30 Jun 2025 15:08:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1822,11 +1873,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aecd892e-91d5-4437-9b2c-8a1458f683ae + - e1592296-9e81-44e4-8f0e-21ce34d2c454 status: 200 OK code: 200 - duration: 55.487652ms - - id: 37 + duration: 47.234792ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1841,8 +1892,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1852,7 +1903,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -1861,9 +1912,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:05 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1871,11 +1922,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - df6b2205-4c1d-4aca-bb50-796f854554c2 + - f18a01ce-1cb7-4ed3-969e-8393a8e057ff status: 200 OK code: 200 - duration: 42.069552ms - - id: 38 + duration: 58.593ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1890,8 +1941,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1901,7 +1952,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -1910,9 +1961,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:06 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1920,11 +1971,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3b05ad8-f5f9-4835-82f1-639e2841b89a + - 41ca613e-2607-44cc-9804-b32550913d96 status: 200 OK code: 200 - duration: 89.54274ms - - id: 39 + duration: 39.86625ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1939,8 +1990,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -1950,7 +2001,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -1959,9 +2010,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:06 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1969,11 +2020,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7f5838e-5cd2-40cc-85dd-7d4d9cb8fdaa + - 43324801-f2ad-474a-94fe-eed539863a0e status: 200 OK code: 200 - duration: 56.429555ms - - id: 40 + duration: 55.466084ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1988,8 +2039,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -1997,20 +2048,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 1313 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:06 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2018,11 +2069,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b916d96f-dcde-433b-ace2-5e1a75f9f91c + - 60fbd914-9d43-44e0-8d1e-778aee765e91 status: 200 OK code: 200 - duration: 27.676054ms - - id: 41 + duration: 35.605875ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2037,8 +2088,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d497c729-df85-4228-9138-162be5730af3&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3293064f-f973-4025-a6ab-ff40db5edee0&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=51f2119d-fa18-451b-8f25-37dd6c41bcd3&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2048,7 +2099,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-05-16T13:39:59.919421Z","id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:40:00.453442Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:08:39.974998Z","id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:40.328715Z","zone":null}],"total_count":1}' headers: Content-Length: - "489" @@ -2057,9 +2108,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:06 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2067,11 +2118,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 114e9550-efb5-499f-b116-519cf1a91329 + - ebd14b38-3421-4828-9a42-5cf7fc9a1e39 status: 200 OK code: 200 - duration: 96.987ms - - id: 42 + duration: 55.044ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2086,8 +2137,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -2097,7 +2148,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -2106,9 +2157,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:06 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2116,11 +2167,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48088051-8728-4ac6-b6b5-f6ac8c76e690 + - 6ecfed68-6b80-4aa4-ab67-68a43781b401 status: 200 OK code: 200 - duration: 86.130469ms - - id: 43 + duration: 48.630458ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2135,8 +2186,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -2144,20 +2195,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 1313 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2165,11 +2216,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ad85ddb-3d85-417c-9937-51351d295762 + - bbe11198-598d-414a-adb4-10de44e2b8c5 status: 200 OK code: 200 - duration: 34.920009ms - - id: 44 + duration: 29.193709ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2184,8 +2235,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ede3ac16-35dc-493c-ab58-4cc0363f2a16 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2 method: GET response: proto: HTTP/2.0 @@ -2193,20 +2244,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.337582Z","custom_routes_propagation_enabled":false,"id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16","is_default":false,"name":"my vpc","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","private_network_count":1,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","routing_enabled":true,"tags":[],"updated_at":"2025-05-16T13:39:33.337582Z"}' + body: '{"created_at":"2025-06-30T15:08:14.318042Z","custom_routes_propagation_enabled":true,"id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2","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-06-30T15:08:14.379060Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2214,11 +2265,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ee88d95-16f5-4186-91e4-fcbdb6d1dc4f + - bd576667-ca57-4b07-aeff-270074d0b356 status: 200 OK code: 200 - duration: 59.299467ms - - id: 45 + duration: 29.929459ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2233,8 +2284,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -2244,7 +2295,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:40:00.536108Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:40.458968Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - "1061" @@ -2253,9 +2304,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2263,11 +2314,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 860fb78f-51cf-4dc8-94de-0863b09943f8 + - e4cb052d-5c19-43f2-89ad-cdab3910a67f status: 200 OK code: 200 - duration: 69.966369ms - - id: 46 + duration: 33.876959ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2282,8 +2333,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/74984528-9ba7-4d59-9fdb-5ad58012a31d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/42fab6f1-13a0-498d-8dbc-1f2d0c64fb06 method: GET response: proto: HTTP/2.0 @@ -2293,7 +2344,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"address":"172.16.64.7/22","created_at":"2025-05-16T13:39:59.919421Z","id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:40:00.453442Z","zone":null}' + body: '{"address":"172.16.64.7/22","created_at":"2025-06-30T15:08:39.974998Z","id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:40.328715Z","zone":null}' headers: Content-Length: - "463" @@ -2302,9 +2353,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2312,11 +2363,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1e9ee1b4-c497-48d6-a4fc-a866e3891946 + - 91064a7a-1968-46d2-a421-fdbadd201f36 status: 200 OK code: 200 - duration: 52.840545ms - - id: 47 + duration: 24.188125ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2331,8 +2382,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: GET response: proto: HTTP/2.0 @@ -2342,7 +2393,7 @@ interactions: trailer: {} content_length: 1061 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:33.548609Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d497c729-df85-4228-9138-162be5730af3","name":"pn_test_network","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","subnets":[{"created_at":"2025-05-16T13:39:33.548609Z","id":"1cb1e31d-6a07-4491-ac19-4a1bab125521","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"172.16.64.0/22","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"},{"created_at":"2025-05-16T13:39:33.548609Z","id":"7d5e1ed0-6ee1-49ea-8743-1600a1b55af6","private_network_id":"d497c729-df85-4228-9138-162be5730af3","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","subnet":"fd63:256c:45f7:d94e::/64","updated_at":"2025-05-16T13:39:33.548609Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}],"tags":[],"updated_at":"2025-05-16T13:40:00.536108Z","vpc_id":"ede3ac16-35dc-493c-ab58-4cc0363f2a16"}' + body: '{"created_at":"2025-06-30T15:08:14.515347Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3293064f-f973-4025-a6ab-ff40db5edee0","name":"pn_test_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:08:14.515347Z","id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"},{"created_at":"2025-06-30T15:08:14.515347Z","id":"f2c01de8-2952-4aa1-b519-d395f22f5e8f","private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:9a46::/64","updated_at":"2025-06-30T15:08:14.515347Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}],"tags":[],"updated_at":"2025-06-30T15:08:40.458968Z","vpc_id":"b7bf3883-1a5e-49a8-9a18-541f67404ad2"}' headers: Content-Length: - "1061" @@ -2351,9 +2402,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2361,11 +2412,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 32f820b3-31b4-4006-9905-41815fd610d2 + - f3138e3e-e04c-41ad-ad0f-4dcea6bfaa1a status: 200 OK code: 200 - duration: 26.226559ms - - id: 48 + duration: 33.470958ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2380,8 +2431,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -2391,7 +2442,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -2400,9 +2451,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2410,11 +2461,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ef26278-47f3-473f-afb9-9e0aaf15ef37 + - a49547d6-91e0-4f26-9678-0d71f2dd27d7 status: 200 OK code: 200 - duration: 45.427525ms - - id: 49 + duration: 45.543792ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2429,8 +2480,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -2438,20 +2489,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1315 + content_length: 1313 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "1315" + - "1313" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2459,11 +2510,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6c0e501-e01a-477f-9285-39900438efd8 + - 4339c77b-9ebb-42d6-b10f-5ef361b0f061 status: 200 OK code: 200 - duration: 29.335469ms - - id: 50 + duration: 32.067916ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2478,8 +2529,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d497c729-df85-4228-9138-162be5730af3&project_id=fa1e3217-dc80-42ac-85c3-3f034b78b552&resource_id=b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f&resource_type=vpc_gateway_network + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3293064f-f973-4025-a6ab-ff40db5edee0&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=51f2119d-fa18-451b-8f25-37dd6c41bcd3&resource_type=vpc_gateway_network method: GET response: proto: HTTP/2.0 @@ -2489,7 +2540,7 @@ interactions: trailer: {} content_length: 489 uncompressed: false - body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-05-16T13:39:59.919421Z","id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","is_ipv6":false,"project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","region":"fr-par","resource":{"id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"1cb1e31d-6a07-4491-ac19-4a1bab125521"},"tags":[],"updated_at":"2025-05-16T13:40:00.453442Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.64.7/22","created_at":"2025-06-30T15:08:39.974998Z","id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","mac_address":null,"name":"foobar","type":"vpc_gateway_network"},"reverses":[],"source":{"subnet_id":"051f0ecd-db12-4d10-b659-dbc8d5aa9f74"},"tags":[],"updated_at":"2025-06-30T15:08:40.328715Z","zone":null}],"total_count":1}' headers: Content-Length: - "489" @@ -2498,9 +2549,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:07 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2508,11 +2559,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a35a854e-5878-4cb8-a368-2fb6d4c61ab6 + - ba43aeab-6ee6-4a29-8591-11ec3a727f6b status: 200 OK code: 200 - duration: 105.095196ms - - id: 51 + duration: 57.847625ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2527,8 +2578,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -2538,7 +2589,7 @@ interactions: trailer: {} content_length: 416 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"ready","updated_at":"2025-05-16T13:40:04.695921Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"ready","updated_at":"2025-06-30T15:08:43.031970Z","zone":"fr-par-1"}' headers: Content-Length: - "416" @@ -2547,9 +2598,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:08 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2557,11 +2608,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d5d6144-1de0-4735-9e5b-41f5fdb6f2a6 + - 2ab11737-be8d-4471-9bea-f2e6d5e8790f status: 200 OK code: 200 - duration: 56.870384ms - - id: 52 + duration: 47.621542ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2576,8 +2627,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: DELETE response: proto: HTTP/2.0 @@ -2587,7 +2638,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T13:40:08.330647Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:08:46.520016Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -2596,9 +2647,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:08 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2606,11 +2657,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce522a66-acc0-43aa-81bd-c4b39a990b6b + - eb09dda8-6782-4218-b5b2-858e374d57bb status: 200 OK code: 200 - duration: 81.462035ms - - id: 53 + duration: 68.97275ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2625,8 +2676,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -2636,7 +2687,7 @@ interactions: trailer: {} content_length: 420 uncompressed: false - body: '{"created_at":"2025-05-16T13:39:41.323591Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","ipam_ip_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","mac_address":"02:00:00:1E:04:CD","masquerade_enabled":true,"private_network_id":"d497c729-df85-4228-9138-162be5730af3","push_default_route":true,"status":"detaching","updated_at":"2025-05-16T13:40:08.330647Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:08:27.598416Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","ipam_ip_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","mac_address":"02:00:00:1F:F3:A5","masquerade_enabled":true,"private_network_id":"3293064f-f973-4025-a6ab-ff40db5edee0","push_default_route":true,"status":"detaching","updated_at":"2025-06-30T15:08:46.520016Z","zone":"fr-par-1"}' headers: Content-Length: - "420" @@ -2645,9 +2696,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:08 GMT + - Mon, 30 Jun 2025 15:08:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2655,11 +2706,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6fcbd519-4a6e-4cb2-acab-92435c97f430 + - 6a142751-6428-4982-8fdc-8ba2a5627178 status: 200 OK code: 200 - duration: 43.735004ms - - id: 54 + duration: 44.08175ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2674,8 +2725,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -2685,7 +2736,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","type":"not_found"}' headers: Content-Length: - "136" @@ -2694,9 +2745,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:13 GMT + - Mon, 30 Jun 2025 15:08:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2704,11 +2755,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f3c7fd6-60e1-4655-91ee-9e7eda024efc + - e69b72fd-ec8f-44b5-b487-850a9fa660f5 status: 404 Not Found code: 404 - duration: 34.031906ms - - id: 55 + duration: 23.586875ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2723,8 +2774,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -2732,20 +2783,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 899 + content_length: 897 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:39:52.073679Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"running","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:36.915611Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "899" + - "897" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:13 GMT + - Mon, 30 Jun 2025 15:08:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2753,11 +2804,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9f17d716-9b8c-48b2-a8fa-100b74c0234d + - e8255913-6ee4-4fd4-aace-1845aeac0e68 status: 200 OK code: 200 - duration: 26.85625ms - - id: 56 + duration: 30.789667ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2774,8 +2825,8 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/74984528-9ba7-4d59-9fdb-5ad58012a31d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/42fab6f1-13a0-498d-8dbc-1f2d0c64fb06 method: DELETE response: proto: HTTP/2.0 @@ -2792,9 +2843,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:13 GMT + - Mon, 30 Jun 2025 15:08:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2802,11 +2853,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08cd6a0c-ec71-4571-9def-6b10b05ed8c9 + - 31bb9152-4493-4903-8228-ab49524cf015 status: 204 No Content code: 204 - duration: 117.360712ms - - id: 57 + duration: 258.302292ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2821,8 +2872,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87?delete_ip=false + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc?delete_ip=false method: DELETE response: proto: HTTP/2.0 @@ -2830,20 +2881,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 900 + content_length: 898 uncompressed: false - body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-05-16T13:39:34.627778Z","gateway_networks":[],"id":"442456ee-97da-4c5e-a279-0b7139345b87","ipv4":{"address":"163.172.136.13","created_at":"2025-05-16T13:39:34.612876Z","gateway_id":"442456ee-97da-4c5e-a279-0b7139345b87","id":"002a1539-e0a0-486e-8b1f-b2b39211317b","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","reverse":"13-136-172-163.instances.scw.cloud","tags":[],"updated_at":"2025-05-16T13:39:34.612876Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","project_id":"fa1e3217-dc80-42ac-85c3-3f034b78b552","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-05-16T13:40:13.549218Z","version":"0.7.4","zone":"fr-par-1"}' + body: '{"bandwidth":100,"bastion_allowed_ips":["0.0.0.0/0"],"bastion_enabled":false,"bastion_port":61000,"created_at":"2025-06-30T15:08:15.059932Z","gateway_networks":[],"id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","ipv4":{"address":"51.158.77.177","created_at":"2025-06-30T15:08:15.037518Z","gateway_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","id":"3e3c2c09-18d1-4715-938d-321bb0bad502","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","reverse":"177-77-158-51.instances.scw.cloud","tags":[],"updated_at":"2025-06-30T15:08:15.037518Z","zone":"fr-par-1"},"is_legacy":false,"name":"foobar","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","smtp_enabled":false,"status":"deleting","tags":[],"type":"VPC-GW-S","updated_at":"2025-06-30T15:08:51.700794Z","version":"0.7.4","zone":"fr-par-1"}' headers: Content-Length: - - "900" + - "898" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:13 GMT + - Mon, 30 Jun 2025 15:08:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2851,11 +2902,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7a1ed24e-2a92-4f2f-952a-934a818a5812 + - 9b07ce7a-ea4f-4b89-9342-1885f1e8b0a5 status: 200 OK code: 200 - duration: 100.721436ms - - id: 58 + duration: 509.373375ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2870,8 +2921,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/442456ee-97da-4c5e-a279-0b7139345b87 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateways/1bb7a670-4b3e-4f74-9214-0ad18874b2bc method: GET response: proto: HTTP/2.0 @@ -2881,7 +2932,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway","resource_id":"442456ee-97da-4c5e-a279-0b7139345b87","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway","resource_id":"1bb7a670-4b3e-4f74-9214-0ad18874b2bc","type":"not_found"}' headers: Content-Length: - "128" @@ -2890,9 +2941,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:13 GMT + - Mon, 30 Jun 2025 15:08:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2900,11 +2951,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 74748789-2482-4d49-bddf-142d40fbb1ea + - 221453cd-6057-43f6-8d1f-cc223a86bc20 status: 404 Not Found code: 404 - duration: 108.789998ms - - id: 59 + duration: 29.462583ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2919,8 +2970,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d497c729-df85-4228-9138-162be5730af3 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3293064f-f973-4025-a6ab-ff40db5edee0 method: DELETE response: proto: HTTP/2.0 @@ -2937,9 +2988,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Mon, 30 Jun 2025 15:08:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2947,11 +2998,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5a0858f0-2d65-455b-81a1-09504a80cafe + - e6373f81-c3fe-4da5-b89e-5a1fdef34aae status: 204 No Content code: 204 - duration: 1.43187847s - - id: 60 + duration: 1.798800375s + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2966,8 +3017,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/ede3ac16-35dc-493c-ab58-4cc0363f2a16 + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b7bf3883-1a5e-49a8-9a18-541f67404ad2 method: DELETE response: proto: HTTP/2.0 @@ -2984,9 +3035,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Mon, 30 Jun 2025 15:08:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2994,11 +3045,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20a8ecb1-7e5e-44ac-9825-5781ac7f04f0 + - a0a4fc6b-5bca-4bb6-aab8-eb7de2bd9974 status: 204 No Content code: 204 - duration: 107.877087ms - - id: 61 + duration: 81.742541ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3013,8 +3064,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc-gw/v2/zones/fr-par-1/gateway-networks/51f2119d-fa18-451b-8f25-37dd6c41bcd3 method: GET response: proto: HTTP/2.0 @@ -3024,7 +3075,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"b6976e54-0ab2-459d-aa3b-a9dfa3bb4c3f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"gateway_network","resource_id":"51f2119d-fa18-451b-8f25-37dd6c41bcd3","type":"not_found"}' headers: Content-Length: - "136" @@ -3033,9 +3084,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Mon, 30 Jun 2025 15:08:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3043,11 +3094,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1fd243ae-b642-47c8-ae51-784bc99145ea + - e277a127-cbbb-43cf-b39a-14bdc40ab3d3 status: 404 Not Found code: 404 - duration: 27.147207ms - - id: 62 + duration: 22.3555ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3062,8 +3113,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/74984528-9ba7-4d59-9fdb-5ad58012a31d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/42fab6f1-13a0-498d-8dbc-1f2d0c64fb06 method: GET response: proto: HTTP/2.0 @@ -3073,7 +3124,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"74984528-9ba7-4d59-9fdb-5ad58012a31d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"42fab6f1-13a0-498d-8dbc-1f2d0c64fb06","type":"not_found"}' headers: Content-Length: - "123" @@ -3082,9 +3133,9 @@ interactions: Content-Type: - application/json Date: - - Fri, 16 May 2025 13:40:15 GMT + - Mon, 30 Jun 2025 15:08:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge02) + - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3092,7 +3143,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2d311d6-5df3-4a9e-b54f-2cf57373daf3 + - 002a3d34-d47b-4161-be31-3a5a402ac624 status: 404 Not Found code: 404 - duration: 33.509551ms + duration: 24.552959ms From 577093da6c629fd6d942c085254692fd91dd18ed Mon Sep 17 00:00:00 2001 From: Yacine Fodil <105779815+yfodil@users.noreply.github.com> Date: Fri, 27 Jun 2025 17:16:50 +0200 Subject: [PATCH 4/8] feat(edge-services): add support for include_cookies on cache stage (#3184) * feat(edge-services): add support for include_cookies on cache stage * fix GetEndOfServiceDate test --- docs/resources/edge_services_cache_stage.md | 1 + go.mod | 2 +- go.sum | 4 +- internal/services/edgeservices/cache_stage.go | 12 + .../services/edgeservices/cache_stage_test.go | 25 + .../edge-services-cache-basic.cassette.yaml | 481 +++++++++++++++--- internal/services/instance/server.go | 1 + ...test-get-end-of-service-date.cassette.yaml | 214 +------- 8 files changed, 464 insertions(+), 276 deletions(-) diff --git a/docs/resources/edge_services_cache_stage.md b/docs/resources/edge_services_cache_stage.md index 6401855799..27e0d3ba50 100644 --- a/docs/resources/edge_services_cache_stage.md +++ b/docs/resources/edge_services_cache_stage.md @@ -40,6 +40,7 @@ resource "scaleway_edge_services_cache_stage" "main" { - `waf_stage_id` - (Optional) The WAF stage ID the cache stage will be linked to. Only one of `backend_stage_id`, `route_stage_id` and `waf_stage_id` should be specified. - `fallback_ttl` - (Optional) The Time To Live (TTL) in seconds. Defines how long content is cached. - `refresh_cache` - (Optional) Trigger a refresh of the cache by changing this field's value. +- `include_cookies` - (Optional) Defines whether responses to requests with cookies must be stored in the cache. - `purge_requests` - (Optional) The Scaleway Object Storage origin bucket (S3) linked to the backend stage. - `pipeline_id` - The pipeline ID in which the purge request will be created. - `assets` - The list of asserts to purge. diff --git a/go.mod b/go.mod index 3cf4202fe6..ed2f385c74 100644 --- a/go.mod +++ b/go.mod @@ -28,7 +28,7 @@ require ( github.com/nats-io/jwt/v2 v2.7.4 github.com/nats-io/nats.go v1.38.0 github.com/robfig/cron/v3 v3.0.1 - github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b + github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250625143510-4421125d41b9 github.com/stretchr/testify v1.10.0 golang.org/x/crypto v0.38.0 gopkg.in/dnaeon/go-vcr.v3 v3.2.0 diff --git a/go.sum b/go.sum index 7b32772228..9f1f8d3676 100644 --- a/go.sum +++ b/go.sum @@ -447,8 +447,8 @@ github.com/rogpeppe/go-internal v1.3.0/go.mod h1:M8bDsm7K2OlrFYOpmOWEs/qY81heoFR github.com/rogpeppe/go-internal v1.13.1 h1:KvO1DLK/DRN07sQ1LQKScxyZJuNnedQ5/wKSR38lUII= github.com/rogpeppe/go-internal v1.13.1/go.mod h1:uMEvuHeurkdAXX61udpOXGD/AzZDWNMNyH2VO9fmH0o= github.com/russross/blackfriday/v2 v2.1.0/go.mod h1:+Rmxgy9KzJVeS9/2gXHxylqXiyQDYRxCVz55jmeOWTM= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b h1:7V7T9XzUl+B/6zHeNxyX0DV3OVjCSedA0stHo0BNKZw= -github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250613133518-6987cd48643b/go.mod h1:zFWiHphneiey3s8HOtAEnGrRlWivNaxW5T6d5Xfco7g= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250625143510-4421125d41b9 h1:9twhtdDBC2hYdNk6dhdOUWyx+quP0MTsMyub8r6K86U= +github.com/scaleway/scaleway-sdk-go v1.0.0-beta.33.0.20250625143510-4421125d41b9/go.mod h1:zFWiHphneiey3s8HOtAEnGrRlWivNaxW5T6d5Xfco7g= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3 h1:n661drycOFuPLCN3Uc8sB6B/s6Z4t2xvBgU1htSHuq8= github.com/sergi/go-diff v1.3.2-0.20230802210424-5b0b94c5c0d3/go.mod h1:A0bzQcvG0E7Rwjx0REVgAGH58e96+X0MeOfepqsbeW4= github.com/shopspring/decimal v1.2.0/go.mod h1:DKyhrW/HYNuLGql+MJL6WCR6knT2jwCFRcu2hWCYk4o= diff --git a/internal/services/edgeservices/cache_stage.go b/internal/services/edgeservices/cache_stage.go index 18168aa2e2..ccf401cbdb 100644 --- a/internal/services/edgeservices/cache_stage.go +++ b/internal/services/edgeservices/cache_stage.go @@ -86,6 +86,11 @@ func ResourceCacheStage() *schema.Resource { Optional: true, Description: "Trigger a refresh of the cache by changing this field's value", }, + "include_cookies": { + Type: schema.TypeBool, + Optional: true, + Description: "Defines whether responses to requests with cookies must be stored in the cache", + }, "created_at": { Type: schema.TypeString, Computed: true, @@ -110,6 +115,7 @@ func ResourceCacheStageCreate(ctx context.Context, d *schema.ResourceData, m any RouteStageID: types.ExpandStringPtr(d.Get("route_stage_id").(string)), WafStageID: types.ExpandStringPtr(d.Get("waf_stage_id").(string)), FallbackTTL: &scw.Duration{Seconds: int64(d.Get("fallback_ttl").(int))}, + IncludeCookies: types.ExpandBoolPtr(d.Get("include_cookies").(bool)), }, scw.WithContext(ctx)) if err != nil { return diag.FromErr(err) @@ -143,6 +149,7 @@ func ResourceCacheStageRead(ctx context.Context, d *schema.ResourceData, m any) _ = d.Set("route_stage_id", types.FlattenStringPtr(cacheStage.RouteStageID)) _ = d.Set("waf_stage_id", types.FlattenStringPtr(cacheStage.WafStageID)) _ = d.Set("fallback_ttl", cacheStage.FallbackTTL.Seconds) + _ = d.Set("include_cookies", cacheStage.IncludeCookies) return nil } @@ -176,6 +183,11 @@ func ResourceCacheStageUpdate(ctx context.Context, d *schema.ResourceData, m any hasChanged = true } + if d.HasChange("include_cookies") { + updateRequest.IncludeCookies = types.ExpandBoolPtr(d.Get("include_cookies").(bool)) + hasChanged = true + } + if hasChanged { _, err := api.UpdateCacheStage(updateRequest, scw.WithContext(ctx)) if err != nil { diff --git a/internal/services/edgeservices/cache_stage_test.go b/internal/services/edgeservices/cache_stage_test.go index 874d33e8f1..ff5a65ebfd 100644 --- a/internal/services/edgeservices/cache_stage_test.go +++ b/internal/services/edgeservices/cache_stage_test.go @@ -33,6 +33,31 @@ func TestAccEdgeServicesCache_Basic(t *testing.T) { "scaleway_edge_services_pipeline.main", "id", "scaleway_edge_services_cache_stage.main", "pipeline_id"), resource.TestCheckResourceAttr("scaleway_edge_services_cache_stage.main", "fallback_ttl", "3600"), + resource.TestCheckResourceAttr("scaleway_edge_services_cache_stage.main", "include_cookies", "false"), + resource.TestCheckResourceAttrSet("scaleway_edge_services_cache_stage.main", "created_at"), + resource.TestCheckResourceAttrSet("scaleway_edge_services_cache_stage.main", "updated_at"), + ), + }, + { + Config: ` + resource "scaleway_edge_services_pipeline" "main" { + name = "my-edge_services-pipeline" + description = "pipeline description" + } + + resource "scaleway_edge_services_cache_stage" "main" { + pipeline_id = scaleway_edge_services_pipeline.main.id + include_cookies = true + fallback_ttl = 7200 + } + `, + Check: resource.ComposeTestCheckFunc( + edgeservicestestfuncs.CheckEdgeServicesCacheExists(tt, "scaleway_edge_services_cache_stage.main"), + resource.TestCheckResourceAttrPair( + "scaleway_edge_services_pipeline.main", "id", + "scaleway_edge_services_cache_stage.main", "pipeline_id"), + resource.TestCheckResourceAttr("scaleway_edge_services_cache_stage.main", "fallback_ttl", "7200"), + resource.TestCheckResourceAttr("scaleway_edge_services_cache_stage.main", "include_cookies", "true"), resource.TestCheckResourceAttrSet("scaleway_edge_services_cache_stage.main", "created_at"), resource.TestCheckResourceAttrSet("scaleway_edge_services_cache_stage.main", "updated_at"), ), diff --git a/internal/services/edgeservices/testdata/edge-services-cache-basic.cassette.yaml b/internal/services/edgeservices/testdata/edge-services-cache-basic.cassette.yaml index b68f7b4b90..1e085ef50e 100644 --- a/internal/services/edgeservices/testdata/edge-services-cache-basic.cassette.yaml +++ b/internal/services/edgeservices/testdata/edge-services-cache-basic.cassette.yaml @@ -18,7 +18,7 @@ interactions: Content-Type: - application/json User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests url: https://api.scaleway.com/edge-services/v1beta1/pipelines method: POST response: @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 349 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.492916155Z","description":"pipeline description","errors":[],"id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-03-06T14:13:02.492916155Z"}' + body: '{"created_at":"2025-06-27T12:50:26.977372452Z","description":"pipeline description","errors":[],"id":"075364c3-bd70-479a-8e04-fca32f210302","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-06-27T12:50:26.977372452Z"}' headers: Content-Length: - "349" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:02 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d091e86-ba42-4be4-be3d-6c92cf55e353 + - 5674fa51-ca6e-49ae-9525-96ae738457ed status: 200 OK code: 200 - duration: 209.85465ms + duration: 493.914ms - id: 1 request: proto: HTTP/1.1 @@ -67,8 +67,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/edge-services/v1beta1/pipelines/19feeb46-7b14-42ce-b910-d6d42e7c61bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302 method: GET response: proto: HTTP/2.0 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 343 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.492916Z","description":"pipeline description","errors":[],"id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-03-06T14:13:02.492916Z"}' + body: '{"created_at":"2025-06-27T12:50:26.977372Z","description":"pipeline description","errors":[],"id":"075364c3-bd70-479a-8e04-fca32f210302","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-06-27T12:50:26.977372Z"}' headers: Content-Length: - "343" @@ -87,7 +87,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:02 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -97,29 +97,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2678c16d-4033-46d0-b266-555d6a8ad803 + - 11c210b3-f3de-4d3a-9f76-1e950355122f status: 200 OK code: 200 - duration: 54.825725ms + duration: 63.667917ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 34 + content_length: 58 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"fallback_ttl":"3600.000000000s"}' + body: '{"fallback_ttl":"3600.000000000s","include_cookies":false}' form: {} headers: Content-Type: - application/json User-Agent: - - 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/edge-services/v1beta1/pipelines/19feeb46-7b14-42ce-b910-d6d42e7c61bb/cache-stages + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302/cache-stages method: POST response: proto: HTTP/2.0 @@ -127,18 +127,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 213 + content_length: 237 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.705151610Z","fallback_ttl":"3600s","id":"af920d63-dab0-497c-bc6c-74ddc54a769d","pipeline_id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","updated_at":"2025-03-06T14:13:02.705151610Z"}' + body: '{"created_at":"2025-06-27T12:50:27.172262211Z","fallback_ttl":"3600s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":false,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:27.172262211Z"}' headers: Content-Length: - - "213" + - "237" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:02 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -148,10 +148,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 678b2c5c-83a2-4463-ada9-5d4be920cb34 + - deecfc82-a4e0-46e1-a656-18a606c59260 status: 200 OK code: 200 - duration: 96.843206ms + duration: 62.280917ms - 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.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/af920d63-dab0-497c-bc6c-74ddc54a769d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 method: GET response: proto: HTTP/2.0 @@ -176,18 +176,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 207 + content_length: 231 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.705151Z","fallback_ttl":"3600s","id":"af920d63-dab0-497c-bc6c-74ddc54a769d","pipeline_id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","updated_at":"2025-03-06T14:13:02.705151Z"}' + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"3600s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":false,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:27.172262Z"}' headers: Content-Length: - - "207" + - "231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:02 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e5cc7302-4ba8-4bc9-a932-03a78a0cc24c + - b427cee9-0f20-4ec9-bd91-073b24e8091a status: 200 OK code: 200 - duration: 58.945676ms + duration: 63.777334ms - id: 4 request: proto: HTTP/1.1 @@ -216,8 +216,8 @@ interactions: form: {} headers: User-Agent: - - 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/edge-services/v1beta1/cache-stages/af920d63-dab0-497c-bc6c-74ddc54a769d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 method: GET response: proto: HTTP/2.0 @@ -225,18 +225,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 207 + content_length: 231 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.705151Z","fallback_ttl":"3600s","id":"af920d63-dab0-497c-bc6c-74ddc54a769d","pipeline_id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","updated_at":"2025-03-06T14:13:02.705151Z"}' + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"3600s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":false,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:27.172262Z"}' headers: Content-Length: - - "207" + - "231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:03 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0bed0644-0917-462e-bf23-80f539de54af + - 9d1ce879-b8f8-4ccb-aa76-91de55872960 status: 200 OK code: 200 - duration: 62.265491ms + duration: 56.860834ms - id: 5 request: proto: HTTP/1.1 @@ -265,8 +265,8 @@ interactions: form: {} headers: User-Agent: - - 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/edge-services/v1beta1/pipelines/19feeb46-7b14-42ce-b910-d6d42e7c61bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302 method: GET response: proto: HTTP/2.0 @@ -276,7 +276,7 @@ interactions: trailer: {} content_length: 343 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.492916Z","description":"pipeline description","errors":[],"id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-03-06T14:13:02.492916Z"}' + body: '{"created_at":"2025-06-27T12:50:26.977372Z","description":"pipeline description","errors":[],"id":"075364c3-bd70-479a-8e04-fca32f210302","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-06-27T12:50:26.977372Z"}' headers: Content-Length: - "343" @@ -285,7 +285,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:03 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 37bbbb67-8adb-4fe7-90ce-2728359eb917 + - 2dcaa989-4f7a-4f80-9f57-1bcdeb712aa8 status: 200 OK code: 200 - duration: 45.481991ms + duration: 52.143084ms - id: 6 request: proto: HTTP/1.1 @@ -314,8 +314,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.0; darwin; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/af920d63-dab0-497c-bc6c-74ddc54a769d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 method: GET response: proto: HTTP/2.0 @@ -323,18 +323,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 207 + content_length: 231 uncompressed: false - body: '{"created_at":"2025-03-06T14:13:02.705151Z","fallback_ttl":"3600s","id":"af920d63-dab0-497c-bc6c-74ddc54a769d","pipeline_id":"19feeb46-7b14-42ce-b910-d6d42e7c61bb","updated_at":"2025-03-06T14:13:02.705151Z"}' + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"3600s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":false,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:27.172262Z"}' headers: Content-Length: - - "207" + - "231" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:03 GMT + - Fri, 27 Jun 2025 12:50:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fe8d47b-b789-44b1-a94c-60b951435974 + - f849c1cf-1080-4111-b6cd-704e45e5dd24 status: 200 OK code: 200 - duration: 70.074505ms + duration: 63.121916ms - id: 7 request: proto: HTTP/1.1 @@ -363,8 +363,353 @@ interactions: form: {} headers: User-Agent: - - 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/edge-services/v1beta1/cache-stages/af920d63-dab0-497c-bc6c-74ddc54a769d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 343 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:26.977372Z","description":"pipeline description","errors":[],"id":"075364c3-bd70-479a-8e04-fca32f210302","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-06-27T12:50:26.977372Z"}' + headers: + Content-Length: + - "343" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 48b28522-c600-480f-a9a3-9c032d7fff38 + status: 200 OK + code: 200 + duration: 44.059042ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 231 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"3600s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":false,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:27.172262Z"}' + headers: + Content-Length: + - "231" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:27 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6ae4481c-2b5e-438d-829f-55b7367de328 + status: 200 OK + code: 200 + duration: 53.724083ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 57 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"fallback_ttl":"7200.000000000s","include_cookies":true}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 + method: PATCH + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 233 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"7200s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":true,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:28.271076050Z"}' + headers: + Content-Length: + - "233" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b4e5eaa-c099-4c90-a1cd-111167094356 + status: 200 OK + code: 200 + duration: 79.441625ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"7200s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":true,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:28.271076Z"}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea647d35-f6e5-441b-b81e-ce32d292b032 + status: 200 OK + code: 200 + duration: 60.63625ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"7200s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":true,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:28.271076Z"}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94dd96e2-5d2b-48ab-9879-5798b29f18d5 + status: 200 OK + code: 200 + duration: 62.071ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 343 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:26.977372Z","description":"pipeline description","errors":[],"id":"075364c3-bd70-479a-8e04-fca32f210302","name":"my-edge_services-pipeline","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"pending","updated_at":"2025-06-27T12:50:26.977372Z"}' + headers: + Content-Length: + - "343" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0fa51075-9c33-4a92-aafd-42b867dae893 + status: 200 OK + code: 200 + duration: 44.472583ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 230 + uncompressed: false + body: '{"created_at":"2025-06-27T12:50:27.172262Z","fallback_ttl":"7200s","id":"3c330095-0979-481a-a5f8-33bbad769e72","include_cookies":true,"pipeline_id":"075364c3-bd70-479a-8e04-fca32f210302","updated_at":"2025-06-27T12:50:28.271076Z"}' + headers: + Content-Length: + - "230" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 12:50:28 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2802788-e2a8-45c1-95eb-74cd7455ec7e + status: 200 OK + code: 200 + duration: 62.921ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 method: DELETE response: proto: HTTP/2.0 @@ -381,7 +726,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:04 GMT + - Fri, 27 Jun 2025 12:50:29 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -391,11 +736,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49dd1e93-445a-4be2-a14d-3c8017220153 + - 72e544f3-4f1b-41de-85b9-12ef8c72f6a0 status: 204 No Content code: 204 - duration: 68.736676ms - - id: 8 + duration: 89.997042ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -410,8 +755,8 @@ interactions: form: {} headers: User-Agent: - - 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/edge-services/v1beta1/pipelines/19feeb46-7b14-42ce-b910-d6d42e7c61bb + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/pipelines/075364c3-bd70-479a-8e04-fca32f210302 method: DELETE response: proto: HTTP/2.0 @@ -428,7 +773,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:04 GMT + - Fri, 27 Jun 2025 12:50:29 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -438,11 +783,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 63b1e96e-c54b-4c02-850e-8e33125ee58f + - 13515439-3cb2-42b6-aa7e-1e950ef5ebf9 status: 204 No Content code: 204 - duration: 139.792293ms - - id: 9 + duration: 151.512667ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -457,8 +802,8 @@ interactions: form: {} headers: User-Agent: - - 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/edge-services/v1beta1/cache-stages/af920d63-dab0-497c-bc6c-74ddc54a769d + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/edge-services/v1beta1/cache-stages/3c330095-0979-481a-a5f8-33bbad769e72 method: DELETE response: proto: HTTP/2.0 @@ -477,7 +822,7 @@ interactions: Content-Type: - application/json Date: - - Thu, 06 Mar 2025 14:13:04 GMT + - Fri, 27 Jun 2025 12:50:29 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -487,7 +832,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ba3364e-12f2-4486-addf-2bfea94d7feb + - 023cad0c-f361-4283-b9aa-cb4ed9f54d53 status: 403 Forbidden code: 403 - duration: 53.285696ms + duration: 60.098709ms diff --git a/internal/services/instance/server.go b/internal/services/instance/server.go index 0f4b048c36..9af336230e 100644 --- a/internal/services/instance/server.go +++ b/internal/services/instance/server.go @@ -1603,6 +1603,7 @@ func GetEndOfServiceDate(ctx context.Context, client *scw.Client, zone scw.Zone, api := product_catalog.NewPublicCatalogAPI(client) products, err := api.ListPublicCatalogProducts(&product_catalog.PublicCatalogAPIListPublicCatalogProductsRequest{ + Zone: &zone, ProductTypes: []product_catalog.ListPublicCatalogProductsRequestProductType{ product_catalog.ListPublicCatalogProductsRequestProductTypeInstance, }, diff --git a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml index 1ac874a619..dc3e14e284 100644 --- a/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml +++ b/internal/services/instance/testdata/test-get-end-of-service-date.cassette.yaml @@ -16,8 +16,8 @@ interactions: form: {} headers: User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=1&product_types=instance&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -25,20 +25,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 104847 + content_length: 64172 uncompressed: false - body: '{"products":[{"description":"Compute STARDUST1-S Instance - nl-ams-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0036583825,"m3_water_usage":0.0000016335132},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Learning","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - nl-ams-1"},{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031313396,"m3_water_usage":3.864124e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Learning","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute STARDUST1-S Instance - pl-waw-2 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0044870772},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Learning","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - pl-waw-2"},{"description":"Compute GPU-3070-S Instance - fr-par-2 (0.98€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":980000000,"units":0}},"product":"GPU-3070-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x RTX-3070","type":"RTX-3070"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"GPU-3070-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gpu_3070_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GPU-3070-S Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - fr-par-2 (0.0125€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - fr-par-2"},{"description":"Compute L4-1-24G Instance - pl-waw-2 (0.0125€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":12500000,"units":0}},"product":"L4-1-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L4","type":"L4"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"48 GiB","size":51539607552,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-1-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_1_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-1-24G Instance - pl-waw-2"},{"description":"Compute L4-2-24G Instance - fr-par-2 (0.025€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - fr-par-2"},{"description":"Compute L4-2-24G Instance - pl-waw-2 (0.025€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":25000000,"units":0}},"product":"L4-2-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L4","type":"L4"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-2-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_2_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-2-24G Instance - pl-waw-2"},{"description":"Compute L4-4-24G Instance - fr-par-2 (0.05€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - fr-par-2"},{"description":"Compute L4-4-24G Instance - pl-waw-2 (0.05€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":50000000,"units":0}},"product":"L4-4-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L4","type":"L4"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-4-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_4_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-4-24G Instance - pl-waw-2"},{"description":"Compute L4-8-24G Instance - fr-par-2 (0.1€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - fr-par-2"},{"description":"Compute L4-8-24G Instance - pl-waw-2 (0.1€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100000000,"units":0}},"product":"L4-8-24G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7413 (2.65 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7413 (2.65 GHz)","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L4","type":"L4"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"L4-8-24G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l4_8_24g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L4-8-24G Instance - pl-waw-2"},{"description":"Compute L40S-1-48G Instance - fr-par-2 (0.023332€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - fr-par-2"},{"description":"Compute L40S-1-48G Instance - pl-waw-2 (0.023332€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":23332000,"units":0}},"product":"L40S-1-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 8","threads":8,"type":"","virtual":{"count":8}},"gpu":{"count":1,"description":"1 x L40S","type":"L40S"},"network":{"description":"Internal: 2.5 Gb/s, Public: 2.5 Gb/s","internal_bandwidth":2500000000,"max_public_bandwidth":2500000000,"public_bandwidth":2500000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-1-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_1_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-1-48G Instance - pl-waw-2"},{"description":"Compute L40S-2-48G Instance - fr-par-2 (0.046664€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - fr-par-2"},{"description":"Compute L40S-2-48G Instance - pl-waw-2 (0.046664€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":46664000,"units":0}},"product":"L40S-2-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 16","threads":16,"type":"","virtual":{"count":16}},"gpu":{"count":2,"description":"2 x L40S","type":"L40S"},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-2-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_2_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-2-48G Instance - pl-waw-2"},{"description":"Compute L40S-4-48G Instance - fr-par-2 (0.093328€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - fr-par-2"},{"description":"Compute L40S-4-48G Instance - pl-waw-2 (0.093328€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":93328000,"units":0}},"product":"L40S-4-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 32","threads":32,"type":"","virtual":{"count":32}},"gpu":{"count":4,"description":"4 x L40S","type":"L40S"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-4-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_4_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-4-48G Instance - pl-waw-2"},{"description":"Compute L40S-8-48G Instance - fr-par-2 (0.186656€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - fr-par-2"},{"description":"Compute L40S-8-48G Instance - pl-waw-2 (0.186656€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":186656000,"units":0}},"product":"L40S-8-48G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 64","threads":64,"type":"","virtual":{"count":64}},"gpu":{"count":8,"description":"8 x L40S","type":"L40S"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"768 GiB","size":824633720832,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"L40S-8-48G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/l40s_8_48g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute L40S-8-48G Instance - pl-waw-2"},{"description":"Compute H100-SXM-2-80G Instance - fr-par-2 (0.1003€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":100300000,"units":0}},"product":"H100-SXM-2-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2.7 GHz, x64, vCPUs: 32","threads":32,"type":"AMD EPYC 9334 2.7 GHz","virtual":{"count":32}},"gpu":{"count":2,"description":"2 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-2-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-4-80G Instance - fr-par-2 (0.1935€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":193500000,"units":0}},"product":"H100-SXM-4-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2.7 GHz, x64, vCPUs: 64","threads":64,"type":"AMD EPYC 9334 2.7 GHz","virtual":{"count":64}},"gpu":{"count":4,"description":"4 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-4-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_4_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-4-80G Instance - fr-par-2"},{"description":"Compute H100-SXM-8-80G Instance - fr-par-2 (0.3838€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":383800000,"units":0}},"product":"H100-SXM-8-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2.7 GHz, x64, vCPUs: 128","threads":128,"type":"AMD EPYC 9334 2.7 GHz","virtual":{"count":128}},"gpu":{"count":8,"description":"8 x H100-SXM","type":"H100-SXM"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"960 GiB","size":1030792151040,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-SXM-8-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_sxm_8_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-SXM-8-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - fr-par-2 (0.0455€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2.7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2.7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - fr-par-2"},{"description":"Compute H100-1-80G Instance - pl-waw-2 (0.0455€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":45500000,"units":0}},"product":"H100-1-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2.7 GHz, x64, vCPUs: 24","threads":24,"type":"AMD EPYC 9334 2.7 GHz","virtual":{"count":24}},"gpu":{"count":1,"description":"1 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"240 GiB","size":257698037760,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-1-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_1_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-1-80G Instance - pl-waw-2"},{"description":"Compute H100-2-80G Instance - fr-par-2 (0.091€ per minute)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - fr-par-2"},{"description":"Compute H100-2-80G Instance - pl-waw-2 (0.091€ per minute)","locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"H100-2-80G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC 9334 2,7 GHz, x64, vCPUs: 48","threads":48,"type":"AMD EPYC 9334 2,7 GHz","virtual":{"count":48}},"gpu":{"count":2,"description":"2 x H100-PCIe","type":"H100-PCIe"},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"480 GiB","size":515396075520,"type":""},"storage":{"description":"Block, Scratch","total":0}},"instance":{"offer_id":"H100-2-80G","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/h100_2_80g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"minute"},"variant":"Compute H100-2-80G Instance - pl-waw-2"},{"description":"Compute RENDER-S Instance - fr-par-2 (1.221€ per hour)","locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-2"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0058522006,"m3_water_usage":0.000002776166},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00506206,"m3_water_usage":0.0000010167707},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-2"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-3 (0.0798€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009002014,"m3_water_usage":5.89379e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":79800000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-3"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006184582},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-2"},{"description":"Compute POP2-HC-2C-4G Instance - nl-ams-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005079091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - nl-ams-3"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049525597,"m3_water_usage":6.035815e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057621463},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-1"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-2 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00728087},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-2"},{"description":"Compute POP2-HC-2C-4G Instance - pl-waw-3 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061344397},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - pl-waw-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063070026,"m3_water_usage":0.000003431309},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052818735,"m3_water_usage":0.0000011817127},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-2"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-3 (0.1596€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009233913,"m3_water_usage":5.92462e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":159600000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-3"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006643515},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-2"},{"description":"Compute POP2-HC-4C-8G Instance - nl-ams-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054967115},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - nl-ams-3"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005185322,"m3_water_usage":6.143721e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067011914},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-1"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-2 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008123116},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-2"},{"description":"Compute POP2-HC-4C-8G Instance - pl-waw-3 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070327274},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - pl-waw-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007216606,"m3_water_usage":0.0000047415956},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057215,"m3_water_usage":0.0000015115966},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-2"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-3 (0.3192€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009697711,"m3_water_usage":5.9862805e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":319200000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-3"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007561381},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HC-8C-16G Instance - nl-ams-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063319523},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005650846,"m3_water_usage":6.359533e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008579281},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-1"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-2 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009807607},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HC-8C-16G Instance - pl-waw-3 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008829302},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - pl-waw-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009035813,"m3_water_usage":0.000007362168},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066007534,"m3_water_usage":0.0000021713643},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-2"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-3 (0.6384€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0106253065,"m3_water_usage":6.1096017e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":638400000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-3"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009397113},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HC-16C-32G Instance - nl-ams-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008002434},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006581894,"m3_water_usage":6.7911566e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012335462},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-1"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-2 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013176589},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HC-16C-32G Instance - pl-waw-3 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012422451},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0126742255,"m3_water_usage":0.000012603314},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00835926,"m3_water_usage":0.0000034908999},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-2"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-3 (1.2768€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012480496,"m3_water_usage":6.3562436e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":276800000,"units":1}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-3"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.013068575},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HC-32C-64G Instance - nl-ams-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011343397},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008443991,"m3_water_usage":7.654404e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019847821},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-1"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-2 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019914554},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HC-32C-64G Instance - pl-waw-3 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01960875},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016312638,"m3_water_usage":0.000017844459},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010117767,"m3_water_usage":0.0000048104353},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-2"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-3 (1.905€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014335687,"m3_water_usage":6.602886e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":905000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-3"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016740039},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-2"},{"description":"Compute POP2-HC-48C-96G Instance - nl-ams-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01468436},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - nl-ams-3"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010306087,"m3_water_usage":8.5176515e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02736018},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-1"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-2 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02665252},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-2"},{"description":"Compute POP2-HC-48C-96G Instance - pl-waw-3 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026795048},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - pl-waw-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019951053,"m3_water_usage":0.000023085606},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011876274,"m3_water_usage":0.0000061299706},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-2"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-3 (2.5536€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016190879,"m3_water_usage":6.849528e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":553600000,"units":2}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-3"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020411503},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HC-64C-128G Instance - nl-ams-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018025322},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012168184,"m3_water_usage":9.380899e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03487254},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-1"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-2 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033390485},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HC-64C-128G Instance - pl-waw-3 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033981346},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006751454,"m3_water_usage":0.000003821459},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005586385,"m3_water_usage":0.0000012799387},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-2"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-3 (0.1545€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009545621,"m3_water_usage":5.94298e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":154500000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-3"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070904265},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-2"},{"description":"Compute POP2-HM-2C-16G Instance - nl-ams-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0059190206},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - nl-ams-3"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054975445,"m3_water_usage":6.207981e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-2 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008798297},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-2"},{"description":"Compute POP2-HM-2C-16G Instance - pl-waw-3 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007741282},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - pl-waw-3"}],"total_count":451}' + body: '{"products":[{"description":"Compute STARDUST1-S Instance - fr-par-1 (0.00015€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0031653228,"m3_water_usage":3.9116887e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":150000,"units":0}},"product":"STARDUST1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"1 GiB","size":1073741824,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"STARDUST1-S","range":"Learning","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/stardust1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute STARDUST1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0033552,"m3_water_usage":4.0862253e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035068698,"m3_water_usage":4.1605486e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037883655,"m3_water_usage":4.2984374e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040480183,"m3_water_usage":4.4255685e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004725373,"m3_water_usage":5.159734e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057387776,"m3_water_usage":5.651466e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007765587,"m3_water_usage":6.6349304e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011819206,"m3_water_usage":8.601859e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019660218,"m3_water_usage":0.0000012406534},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048745456,"m3_water_usage":6.038453e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004976561,"m3_water_usage":6.075189e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051805913,"m3_water_usage":6.148662e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005196052,"m3_water_usage":6.189546e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056195743,"m3_water_usage":6.377375e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064666183,"m3_water_usage":6.753034e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008160707,"m3_water_usage":7.5043516e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011548882,"m3_water_usage":9.006987e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005402523,"m3_water_usage":6.4355754e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005809016,"m3_water_usage":6.5883705e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0066220015,"m3_water_usage":6.8939613e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008247973,"m3_water_usage":7.505143e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011499916,"m3_water_usage":8.727506e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"},{"description":"Compute ENT1-XXS Instance - fr-par-1 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.005279123,"m3_water_usage":6.2774706e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - fr-par-1"},{"description":"Compute ENT1-XS Instance - fr-par-1 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0057857158,"m3_water_usage":6.553225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - fr-par-1"},{"description":"Compute ENT1-S Instance - fr-par-1 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0067989016,"m3_water_usage":7.1047333e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - fr-par-1"},{"description":"Compute ENT1-M Instance - fr-par-1 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.008825273,"m3_water_usage":8.20775e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - fr-par-1"},{"description":"Compute ENT1-L Instance - fr-par-1 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.012878016,"m3_water_usage":0.0000010413785},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - fr-par-1"},{"description":"Compute ENT1-XL Instance - fr-par-1 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0209835,"m3_water_usage":0.0000014825853},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - fr-par-1"},{"description":"Compute ENT1-2XL Instance - fr-par-1 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.029088987,"m3_water_usage":0.000001923792},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - fr-par-1"},{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052234614,"m3_water_usage":6.210763e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005279123,"m3_water_usage":6.2774706e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056743925,"m3_water_usage":6.41981e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057857158,"m3_water_usage":6.553225e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015594876,"m3_water_usage":0.0000011018838},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065762545,"m3_water_usage":6.8379035e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067989016,"m3_water_usage":7.1047333e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008379979,"m3_water_usage":7.67409e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008825273,"m3_water_usage":8.20775e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011987427,"m3_water_usage":9.346463e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012878016,"m3_water_usage":0.0000010413785},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019202325,"m3_water_usage":0.0000012691211},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute POP2-HC-2C-4G Instance - fr-par-1 (0.0532€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005005292,"m3_water_usage":6.109623e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":53200000,"units":0}},"product":"POP2-HC-2C-4G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-2C-4G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_2c_4g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-2C-4G Instance - fr-par-1"},{"description":"Compute POP2-HC-4C-8G Instance - fr-par-1 (0.1064€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052380543,"m3_water_usage":6.2175286e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":106400000,"units":0}},"product":"POP2-HC-4C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-4C-8G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_4c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-4C-8G Instance - fr-par-1"},{"description":"Compute POP2-HC-8C-16G Instance - fr-par-1 (0.2128€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057035787,"m3_water_usage":6.4333403e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":212800000,"units":0}},"product":"POP2-HC-8C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-8C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_8c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-8C-16G Instance - fr-par-1"},{"description":"Compute POP2-HC-16C-32G Instance - fr-par-1 (0.4256€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006634627,"m3_water_usage":6.8649643e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":425600000,"units":0}},"product":"POP2-HC-16C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-16C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_16c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-16C-32G Instance - fr-par-1"},{"description":"Compute POP2-HC-32C-64G Instance - fr-par-1 (0.8512€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008496723,"m3_water_usage":7.728212e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":851200000,"units":0}},"product":"POP2-HC-32C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-32C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_32c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-32C-64G Instance - fr-par-1"},{"description":"Compute POP2-HC-48C-96G Instance - fr-par-1 (1.27€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01035882,"m3_water_usage":8.591459e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":270000000,"units":1}},"product":"POP2-HC-48C-96G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"96 GiB","size":103079215104,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-48C-96G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_48c_96g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-48C-96G Instance - fr-par-1"},{"description":"Compute POP2-HC-64C-128G Instance - fr-par-1 (1.7024€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012220916,"m3_water_usage":9.454707e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":702400000,"units":1}},"product":"POP2-HC-64C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HC-64C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hc_64c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HC-64C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-2C-16G Instance - fr-par-1 (0.103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005550277,"m3_water_usage":6.2817884e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":103000000,"units":0}},"product":"POP2-HM-2C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-2C-16G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_2c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-2C-16G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006328024,"m3_water_usage":6.5618605e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007883518,"m3_water_usage":7.122004e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010994505,"m3_water_usage":8.242291e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01721648,"m3_water_usage":0.0000010482867},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023438456,"m3_water_usage":0.0000012723441},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02966043,"m3_water_usage":0.0000014964015},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052380543,"m3_water_usage":6.2175286e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005005292,"m3_water_usage":6.109623e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052380543,"m3_water_usage":6.2175286e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute RENDER-S Instance - fr-par-1 (1.221€ per hour)","locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":1}},"product":"RENDER-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"Intel Xeon Gold 6148 (2.4 GHz), x64, vCPUs: 10","threads":10,"type":"Intel Xeon Gold 6148 (2.4 GHz)","virtual":{"count":10}},"gpu":{"count":1,"description":"1 x P100","type":"P100"},"network":{"description":"Internal: 2 Gb/s, Public: 2 Gb/s","internal_bandwidth":2000000000,"max_public_bandwidth":2000000000,"public_bandwidth":2000000000},"ram":{"description":"42 GiB","size":45097156608,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"RENDER-S","range":"GPU","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/render_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute RENDER-S Instance - fr-par-1"}],"total_count":60}' headers: Content-Length: - - "104847" + - "64172" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Tue, 17 Jun 2025 13:29:13 GMT + - Fri, 27 Jun 2025 14:22:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-3;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,203 +46,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 17a0f303-75d7-4a00-905d-c70c5e13df56 + - 069309b2-1401-486a-a95f-0f37d1bacd5d status: 200 OK code: 200 - duration: 329.871607ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=2&product_types=instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 105015 - uncompressed: false - body: '{"products":[{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008105508,"m3_water_usage":0.000005521895},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-1"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006330523,"m3_water_usage":0.0000017080484},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-2"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-3 (0.309€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010321128,"m3_water_usage":6.023001e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":309000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-3"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008455204},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-2"},{"description":"Compute POP2-HM-4C-32G Instance - nl-ams-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0071765706},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - nl-ams-3"},{"description":"Compute POP2-HM-4C-32G Instance - fr-par-1 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006275291,"m3_water_usage":6.4880527e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - fr-par-1"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-2 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01115797},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-2"},{"description":"Compute POP2-HM-4C-32G Instance - pl-waw-3 (0.206€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010246412},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":206000000,"units":0}},"product":"POP2-HM-4C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-4C-32G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_4c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-4C-32G Instance - pl-waw-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010813618,"m3_water_usage":0.000008922768},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-1"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0078187995,"m3_water_usage":0.000002564268},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-2"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-3 (0.618€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011872141,"m3_water_usage":6.1830417e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":618000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-3"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0111847585},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-2"},{"description":"Compute POP2-HM-8C-64G Instance - nl-ams-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009691671},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - nl-ams-3"},{"description":"Compute POP2-HM-8C-64G Instance - fr-par-1 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007830785,"m3_water_usage":7.048196e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - fr-par-1"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-2 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015877316},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-2"},{"description":"Compute POP2-HM-8C-64G Instance - pl-waw-3 (0.412€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015256672},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":412000000,"units":0}},"product":"POP2-HM-8C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-8C-64G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_8c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-8C-64G Instance - pl-waw-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016229836,"m3_water_usage":0.000015724512},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-1"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010795353,"m3_water_usage":0.0000042767074},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-2"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-3 (1.236€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.014974166,"m3_water_usage":6.5031236e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":236000000,"units":1}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-3"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016643869},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-2"},{"description":"Compute POP2-HM-16C-128G Instance - nl-ams-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01472187},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - nl-ams-3"},{"description":"Compute POP2-HM-16C-128G Instance - fr-par-1 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010941773,"m3_water_usage":8.168484e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - fr-par-1"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-2 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025316006},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-2"},{"description":"Compute POP2-HM-16C-128G Instance - pl-waw-3 (0.824€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.025277192},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":824000000,"units":0}},"product":"POP2-HM-16C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-16C-128G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_16c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-16C-128G Instance - pl-waw-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027062275,"m3_water_usage":0.000029328003},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-1"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016748458,"m3_water_usage":0.000007701586},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-2"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-3 (2.472€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.021178216,"m3_water_usage":7.143288e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":472000000,"units":2}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-3"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027562087},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-2"},{"description":"Compute POP2-HM-32C-256G Instance - nl-ams-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02478227},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - nl-ams-3"},{"description":"Compute POP2-HM-32C-256G Instance - fr-par-1 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017163748,"m3_water_usage":0.0000010409059},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - fr-par-1"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-2 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.044193387},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-2"},{"description":"Compute POP2-HM-32C-256G Instance - pl-waw-3 (1.648€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04531823},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":648000000,"units":1}},"product":"POP2-HM-32C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-32C-256G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_32c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-32C-256G Instance - pl-waw-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03789471,"m3_water_usage":0.00004293149},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-1"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.022701565,"m3_water_usage":0.000011126464},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-2"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-3 (3.705€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027382268,"m3_water_usage":7.783452e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":705000000,"units":3}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-3"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.038480308},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-2"},{"description":"Compute POP2-HM-48C-384G Instance - nl-ams-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03484267},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - nl-ams-3"},{"description":"Compute POP2-HM-48C-384G Instance - fr-par-1 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023385722,"m3_water_usage":0.0000012649633},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - fr-par-1"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-2 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06307077},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-2"},{"description":"Compute POP2-HM-48C-384G Instance - pl-waw-3 (2.47€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06535927},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":470000000,"units":2}},"product":"POP2-HM-48C-384G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-48C-384G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_48c_384g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-48C-384G Instance - pl-waw-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04872715,"m3_water_usage":0.00005653498},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-1"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02865467,"m3_water_usage":0.000014551343},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-2"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-3 (4.944€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033586316,"m3_water_usage":8.4236166e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":944000000,"units":4}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-3"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.049398527},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-2"},{"description":"Compute POP2-HM-64C-512G Instance - nl-ams-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.04490307},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - nl-ams-3"},{"description":"Compute POP2-HM-64C-512G Instance - fr-par-1 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.029607698,"m3_water_usage":0.0000014890209},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - fr-par-1"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-2 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08194815},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-2"},{"description":"Compute POP2-HM-64C-512G Instance - pl-waw-3 (3.296€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.08540031},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":296000000,"units":3}},"product":"POP2-HM-64C-512G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"512 GiB","size":549755813888,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HM-64C-512G","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hm_64c_512g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HM-64C-512G Instance - pl-waw-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063070026,"m3_water_usage":0.000003431309},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-1"},{"description":"Compute POP2-HN-10 Instance - fr-par-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052818735,"m3_water_usage":0.0000011817127},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-2"},{"description":"Compute POP2-HN-10 Instance - fr-par-3 (1.0896€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009233913,"m3_water_usage":5.92462e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":89600000,"units":1}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-3"},{"description":"Compute POP2-HN-10 Instance - nl-ams-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006643515},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-2"},{"description":"Compute POP2-HN-10 Instance - nl-ams-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054967115},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - nl-ams-3"},{"description":"Compute POP2-HN-10 Instance - fr-par-1 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005185322,"m3_water_usage":6.143721e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - fr-par-1"},{"description":"Compute POP2-HN-10 Instance - pl-waw-2 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008123116},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-2"},{"description":"Compute POP2-HN-10 Instance - pl-waw-3 (0.7264€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070327274},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":726400000,"units":0}},"product":"POP2-HN-10 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-10","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_10/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-10 Instance - pl-waw-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0058522006,"m3_water_usage":0.000002776166},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-1"},{"description":"Compute POP2-HN-3 Instance - fr-par-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00506206,"m3_water_usage":0.0000010167707},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-2"},{"description":"Compute POP2-HN-3 Instance - fr-par-3 (0.3831€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009002014,"m3_water_usage":5.89379e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":383100000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-3"},{"description":"Compute POP2-HN-3 Instance - nl-ams-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006184582},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-2"},{"description":"Compute POP2-HN-3 Instance - nl-ams-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005079091},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - nl-ams-3"},{"description":"Compute POP2-HN-3 Instance - fr-par-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049525597,"m3_water_usage":6.035815e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - fr-par-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-1 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057621463},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-1"},{"description":"Compute POP2-HN-3 Instance - pl-waw-2 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00728087},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-2"},{"description":"Compute POP2-HN-3 Instance - pl-waw-3 (0.2554€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061344397},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":255400000,"units":0}},"product":"POP2-HN-3 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 2","threads":2,"type":"","virtual":{"count":2}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-3","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_3/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-3 Instance - pl-waw-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0063070026,"m3_water_usage":0.000003431309},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-1"},{"description":"Compute POP2-HN-5 Instance - fr-par-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052818735,"m3_water_usage":0.0000011817127},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-2"},{"description":"Compute POP2-HN-5 Instance - fr-par-3 (0.6786€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009233913,"m3_water_usage":5.92462e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":678600000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-3"},{"description":"Compute POP2-HN-5 Instance - nl-ams-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006643515},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-2"},{"description":"Compute POP2-HN-5 Instance - nl-ams-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054967115},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - nl-ams-3"},{"description":"Compute POP2-HN-5 Instance - fr-par-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005185322,"m3_water_usage":6.143721e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - fr-par-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-1 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067011914},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-1"},{"description":"Compute POP2-HN-5 Instance - pl-waw-2 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008123116},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-2"},{"description":"Compute POP2-HN-5 Instance - pl-waw-3 (0.4524€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070327274},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":452400000,"units":0}},"product":"POP2-HN-5 Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":", x64, vCPUs: 4","threads":4,"type":"","virtual":{"count":4}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-HN-5","range":"Workload-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_hn_5/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-HN-5 Instance - pl-waw-3"},{"description":"Compute ENT1-XXS Instance - nl-ams-1 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0064714155,"m3_water_usage":0.000003795245},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - nl-ams-1"},{"description":"Compute ENT1-XXS Instance - fr-par-2 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.005315749,"m3_water_usage":0.000001273339},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - fr-par-2"},{"description":"Compute ENT1-XXS Instance - fr-par-3 (0.11€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.009274502,"m3_water_usage":5.9417465e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - fr-par-3"},{"description":"Compute ENT1-XXS Instance - nl-ams-2 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0068102228},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - nl-ams-2"},{"description":"Compute ENT1-XXS Instance - nl-ams-3 (0.0735€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.00564047},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - nl-ams-3"},{"description":"Compute ENT1-XXS Instance - fr-par-1 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0052263904,"m3_water_usage":6.2036634e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - fr-par-1"},{"description":"Compute ENT1-XXS Instance - pl-waw-1 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0071346043},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - pl-waw-1"},{"description":"Compute ENT1-XXS Instance - pl-waw-2 (0.074€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.008502755},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":74000000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - pl-waw-2"},{"description":"Compute ENT1-XXS Instance - pl-waw-3 (0.0735€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.007443499},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"ENT1-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XXS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-2C-8G"]}},"service_category":"Compute","sku":"/compute/ent1_xxs/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XXS Instance - pl-waw-3"},{"description":"Compute ENT1-XS Instance - nl-ams-1 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0075454316,"m3_water_usage":0.000005469467},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - nl-ams-1"},{"description":"Compute ENT1-XS Instance - fr-par-2 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.005789251,"m3_water_usage":0.000001694849},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - fr-par-2"},{"description":"Compute ENT1-XS Instance - fr-par-3 (0.221€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.009778889,"m3_water_usage":6.020533e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":221000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - fr-par-3"},{"description":"Compute ENT1-XS Instance - nl-ams-2 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.007894796},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - nl-ams-2"},{"description":"Compute ENT1-XS Instance - nl-ams-3 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0066194693},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - nl-ams-3"},{"description":"Compute ENT1-XS Instance - fr-par-1 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0057329834,"m3_water_usage":6.4794176e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - fr-par-1"},{"description":"Compute ENT1-XS Instance - pl-waw-1 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.009446107},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - pl-waw-1"},{"description":"Compute ENT1-XS Instance - pl-waw-2 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.010566887},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - pl-waw-2"},{"description":"Compute ENT1-XS Instance - pl-waw-3 (0.147€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.009650845},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"ENT1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XS","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-4C-16G"]}},"service_category":"Compute","sku":"/compute/ent1_xs/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XS Instance - pl-waw-3"},{"description":"Compute ENT1-S Instance - nl-ams-1 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.009693464,"m3_water_usage":0.000008817911},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - nl-ams-1"},{"description":"Compute ENT1-S Instance - fr-par-2 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0067362557,"m3_water_usage":0.000002537869},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - fr-par-2"},{"description":"Compute ENT1-S Instance - fr-par-3 (0.44€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.010787663,"m3_water_usage":6.178107e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":440000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - fr-par-3"},{"description":"Compute ENT1-S Instance - nl-ams-2 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.010063944},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - nl-ams-2"},{"description":"Compute ENT1-S Instance - nl-ams-3 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.008577468},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - nl-ams-3"},{"description":"Compute ENT1-S Instance - fr-par-1 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0067461687,"m3_water_usage":7.030926e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - fr-par-1"},{"description":"Compute ENT1-S Instance - pl-waw-1 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.014069113},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - pl-waw-1"},{"description":"Compute ENT1-S Instance - pl-waw-2 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.014695151},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - pl-waw-2"}],"total_count":451}' - headers: - Content-Length: - - "105015" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 17 Jun 2025 13:29:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 8cd7d91d-594e-473f-872f-45feb9aea55f - status: 200 OK - code: 200 - duration: 97.017879ms - - id: 2 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=3&product_types=instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 106662 - uncompressed: false - body: '{"products":[{"description":"Compute ENT1-S Instance - pl-waw-3 (0.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0140655385},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"ENT1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-S","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-8C-32G"]}},"service_category":"Compute","sku":"/compute/ent1_s/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-S Instance - pl-waw-3"},{"description":"Compute ENT1-M Instance - nl-ams-1 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.01398953,"m3_water_usage":0.0000155148},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - nl-ams-1"},{"description":"Compute ENT1-M Instance - fr-par-2 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.0086302655,"m3_water_usage":0.0000042239094},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - fr-par-2"},{"description":"Compute ENT1-M Instance - fr-par-3 (0.88€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.01280521,"m3_water_usage":6.493255e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":880000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - fr-par-3"},{"description":"Compute ENT1-M Instance - nl-ams-2 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.014402239},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - nl-ams-2"},{"description":"Compute ENT1-M Instance - nl-ams-3 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.012493465},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - nl-ams-3"},{"description":"Compute ENT1-M Instance - fr-par-1 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.00877254,"m3_water_usage":8.133943e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - fr-par-1"},{"description":"Compute ENT1-M Instance - pl-waw-1 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.023315124},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - pl-waw-1"},{"description":"Compute ENT1-M Instance - pl-waw-2 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.022951677},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - pl-waw-2"},{"description":"Compute ENT1-M Instance - pl-waw-3 (0.59€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.022894925},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"ENT1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-M","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-16C-64G"]}},"service_category":"Compute","sku":"/compute/ent1_m/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-M Instance - pl-waw-3"},{"description":"Compute ENT1-L Instance - nl-ams-1 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.02258166,"m3_water_usage":0.000028908578},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - nl-ams-1"},{"description":"Compute ENT1-L Instance - fr-par-2 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.012418284,"m3_water_usage":0.0000075959897},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - fr-par-2"},{"description":"Compute ENT1-L Instance - fr-par-3 (1.76€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.016840305,"m3_water_usage":7.12355e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":760000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - fr-par-3"},{"description":"Compute ENT1-L Instance - nl-ams-2 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.023078829},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - nl-ams-2"},{"description":"Compute ENT1-L Instance - nl-ams-3 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.02032546},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - nl-ams-3"},{"description":"Compute ENT1-L Instance - fr-par-1 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.012825283,"m3_water_usage":0.0000010339977},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - fr-par-1"},{"description":"Compute ENT1-L Instance - pl-waw-1 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.04180715},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - pl-waw-1"},{"description":"Compute ENT1-L Instance - pl-waw-2 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.03946473},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - pl-waw-2"},{"description":"Compute ENT1-L Instance - pl-waw-3 (1.18€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.040553696},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"ENT1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-L","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-32C-128G"]}},"service_category":"Compute","sku":"/compute/ent1_l/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-L Instance - pl-waw-3"},{"description":"Compute ENT1-XL Instance - nl-ams-1 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.03976592,"m3_water_usage":0.000055696135},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - nl-ams-1"},{"description":"Compute ENT1-XL Instance - fr-par-2 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.01999432,"m3_water_usage":0.000014340151},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - fr-par-2"},{"description":"Compute ENT1-XL Instance - fr-par-3 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.024910493,"m3_water_usage":8.384141e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - fr-par-3"},{"description":"Compute ENT1-XL Instance - nl-ams-2 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.04043201},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - nl-ams-2"},{"description":"Compute ENT1-XL Instance - nl-ams-3 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.03598945},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - nl-ams-3"},{"description":"Compute ENT1-XL Instance - fr-par-1 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.020930769,"m3_water_usage":0.0000014752045},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - fr-par-1"},{"description":"Compute ENT1-XL Instance - pl-waw-1 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.07879119},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - pl-waw-1"},{"description":"Compute ENT1-XL Instance - pl-waw-2 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.07249084},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - pl-waw-2"},{"description":"Compute ENT1-XL Instance - pl-waw-3 (2.35€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.07587124},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"ENT1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-64C-256G"]}},"service_category":"Compute","sku":"/compute/ent1_xl/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-XL Instance - pl-waw-3"},{"description":"Compute ENT1-2XL Instance - nl-ams-1 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.05695018,"m3_water_usage":0.00008248369},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_ams1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - nl-ams-1"},{"description":"Compute ENT1-2XL Instance - fr-par-2 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.027570358,"m3_water_usage":0.000021084312},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_fr-par-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - fr-par-2"},{"description":"Compute ENT1-2XL Instance - fr-par-3 (5.29€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.032980684,"m3_water_usage":9.644732e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":5}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_fr-par-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - fr-par-3"},{"description":"Compute ENT1-2XL Instance - nl-ams-2 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.057785187},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_nl-ams-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - nl-ams-2"},{"description":"Compute ENT1-2XL Instance - nl-ams-3 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.051653437},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_nl-ams-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - nl-ams-3"},{"description":"Compute ENT1-2XL Instance - fr-par-1 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.029036254,"m3_water_usage":0.0000019164113},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_par1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - fr-par-1"},{"description":"Compute ENT1-2XL Instance - pl-waw-1 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.11577524},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_pl-waw-1","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - pl-waw-1"},{"description":"Compute ENT1-2XL Instance - pl-waw-2 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.10551695},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_pl-waw-2","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - pl-waw-2"},{"description":"Compute ENT1-2XL Instance - pl-waw-3 (3.53€ per hour)","end_of_life_at":"2025-09-01T00:00:00Z","environmental_impact_estimation":{"kg_co2_equivalent":0.111188784},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":530000000,"units":3}},"product":"ENT1-2XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 96","threads":96,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":96}},"network":{"description":"Internal: 20 Gb/s, Public: 20 Gb/s","internal_bandwidth":20000000000,"max_public_bandwidth":20000000000,"public_bandwidth":20000000000},"ram":{"description":"384 GiB","size":412316860416,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"ENT1-2XL","range":"Production-Optimized","recommended_replacement_offer_ids":["POP2-HM-64C-512G"]}},"service_category":"Compute","sku":"/compute/ent1_2xl/run_pl-waw-3","status":"end_of_deployment","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute ENT1-2XL Instance - pl-waw-3"},{"description":"Compute POP2-2C-8G Instance - nl-ams-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062784883,"m3_water_usage":0.0000033902347},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-1"},{"description":"Compute POP2-2C-8G Instance - fr-par-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005268092,"m3_water_usage":0.0000011713717},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-2"},{"description":"Compute POP2-2C-8G Instance - fr-par-3 (0.1103€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0092193745,"m3_water_usage":5.922687e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110300000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-3"},{"description":"Compute POP2-2C-8G Instance - nl-ams-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006614742},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-2"},{"description":"Compute POP2-2C-8G Instance - nl-ams-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054705287},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - nl-ams-3"},{"description":"Compute POP2-2C-8G Instance - fr-par-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051707285,"m3_water_usage":6.136956e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - fr-par-1"},{"description":"Compute POP2-2C-8G Instance - pl-waw-1 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006642318},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-1"},{"description":"Compute POP2-2C-8G Instance - pl-waw-2 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008070311},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-2"},{"description":"Compute POP2-2C-8G Instance - pl-waw-3 (0.0735€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006976409},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":73500000,"units":0}},"product":"POP2-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G Instance - pl-waw-3"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-2 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005315749,"m3_water_usage":0.000001273339},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-2"},{"description":"Compute POP2-2C-8G-WIN Instance - fr-par-1 (0.1823€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0052263904,"m3_water_usage":6.2036634e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":182300000,"units":0}},"product":"POP2-2C-8G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-2C-8G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_2c_8g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-2C-8G-WIN Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - nl-ams-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0071595777,"m3_water_usage":0.000004659447},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-1"},{"description":"Compute POP2-4C-16G Instance - fr-par-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056939377,"m3_water_usage":0.0000014909144},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-2"},{"description":"Compute POP2-4C-16G Instance - fr-par-3 (0.2205€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009668633,"m3_water_usage":5.9824146e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":220500000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-3"},{"description":"Compute POP2-4C-16G Instance - nl-ams-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007503835},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-2"},{"description":"Compute POP2-4C-16G Instance - nl-ams-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006279587},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - nl-ams-3"},{"description":"Compute POP2-4C-16G Instance - fr-par-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056216596,"m3_water_usage":6.3460027e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - fr-par-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-1 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008461534},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-1"},{"description":"Compute POP2-4C-16G Instance - pl-waw-2 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009701997},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-2"},{"description":"Compute POP2-4C-16G Instance - pl-waw-3 (0.147€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008716665},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":147000000,"units":0}},"product":"POP2-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G Instance - pl-waw-3"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-2 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005789251,"m3_water_usage":0.000001694849},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-2"},{"description":"Compute POP2-4C-16G-WIN Instance - fr-par-1 (0.3637€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057329834,"m3_water_usage":6.4794176e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":363700000,"units":0}},"product":"POP2-4C-16G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-4C-16G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_4c_16g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-4C-16G-WIN Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - nl-ams-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.026543545,"m3_water_usage":0.00003258211},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-1"},{"description":"Compute POP2-48C-192G Instance - fr-par-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015062538,"m3_water_usage":0.000008520856},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-2"},{"description":"Compute POP2-48C-192G Instance - fr-par-3 (2.655€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019552324,"m3_water_usage":7.2964224e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":655000000,"units":2}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-3"},{"description":"Compute POP2-48C-192G Instance - nl-ams-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.027063878},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-2"},{"description":"Compute POP2-48C-192G Instance - nl-ams-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02407886},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - nl-ams-3"},{"description":"Compute POP2-48C-192G Instance - fr-par-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015542143,"m3_water_usage":0.000001094503},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - fr-par-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-1 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.048484292},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-1"},{"description":"Compute POP2-48C-192G Instance - pl-waw-2 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0455991},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-2"},{"description":"Compute POP2-48C-192G Instance - pl-waw-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.047002304},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-48C-192G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":48}},"network":{"description":"Internal: 9.6 Gb/s, Public: 9.6 Gb/s","internal_bandwidth":9600000000,"max_public_bandwidth":9600000000,"public_bandwidth":9600000000},"ram":{"description":"192 GiB","size":206158430208,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-48C-192G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_48c_192g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-48C-192G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008921756,"m3_water_usage":0.0000071978707},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-1"},{"description":"Compute POP2-8C-32G Instance - fr-par-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065456284,"m3_water_usage":0.00000213},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-2"},{"description":"Compute POP2-8C-32G Instance - fr-par-3 (0.435€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01056715,"m3_water_usage":6.10187e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":435000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-3"},{"description":"Compute POP2-8C-32G Instance - nl-ams-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009282021},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-2"},{"description":"Compute POP2-8C-32G Instance - nl-ams-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007897702},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - nl-ams-3"},{"description":"Compute POP2-8C-32G Instance - fr-par-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065235216,"m3_water_usage":6.7640957e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - fr-par-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-1 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012099966},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-1"},{"description":"Compute POP2-8C-32G Instance - pl-waw-2 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01296537},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-2"},{"description":"Compute POP2-8C-32G Instance - pl-waw-3 (0.29€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012197178},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":290000000,"units":0}},"product":"POP2-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G Instance - pl-waw-3"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-2 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067362557,"m3_water_usage":0.000002537869},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-2"},{"description":"Compute POP2-8C-32G-WIN Instance - fr-par-1 (0.7233€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0067461687,"m3_water_usage":7.030926e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":723300000,"units":0}},"product":"POP2-8C-32G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-8C-32G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_8c_32g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-8C-32G-WIN Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - nl-ams-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012446115,"m3_water_usage":0.000012274719},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-1"},{"description":"Compute POP2-16C-64G Instance - fr-par-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00824901,"m3_water_usage":0.000003408171},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-2"},{"description":"Compute POP2-16C-64G Instance - fr-par-3 (0.885€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012364185,"m3_water_usage":6.3407805e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":885000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-3"},{"description":"Compute POP2-16C-64G Instance - nl-ams-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0128383925},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-2"},{"description":"Compute POP2-16C-64G Instance - nl-ams-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011133934},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - nl-ams-3"},{"description":"Compute POP2-16C-64G Instance - fr-par-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008327246,"m3_water_usage":7.600283e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - fr-par-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-1 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019376831},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-1"},{"description":"Compute POP2-16C-64G Instance - pl-waw-2 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019492116},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-2"},{"description":"Compute POP2-16C-64G Instance - pl-waw-3 (0.59€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019158203},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":590000000,"units":0}},"product":"POP2-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G Instance - pl-waw-3"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-2 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0086302655,"m3_water_usage":0.0000042239094},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-2"},{"description":"Compute POP2-16C-64G-WIN Instance - fr-par-1 (1.4567€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00877254,"m3_water_usage":8.133943e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":456700000,"units":1}},"product":"POP2-16C-64G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-16C-64G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_16c_64g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-16C-64G-WIN Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - nl-ams-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01949483,"m3_water_usage":0.000022428414},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-1"},{"description":"Compute POP2-32C-128G Instance - fr-par-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011655774,"m3_water_usage":0.0000059645135},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-2"},{"description":"Compute POP2-32C-128G Instance - fr-par-3 (1.77€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015958255,"m3_water_usage":6.818602e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":770000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-3"},{"description":"Compute POP2-32C-128G Instance - nl-ams-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019951135},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-2"},{"description":"Compute POP2-32C-128G Instance - nl-ams-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017606398},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - nl-ams-3"},{"description":"Compute POP2-32C-128G Instance - fr-par-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011934695,"m3_water_usage":9.272656e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - fr-par-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-1 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033930562},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-1"},{"description":"Compute POP2-32C-128G Instance - pl-waw-2 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.032545608},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-2"},{"description":"Compute POP2-32C-128G Instance - pl-waw-3 (1.18€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.033080254},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":180000000,"units":1}},"product":"POP2-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G Instance - pl-waw-3"},{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-2 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012418284,"m3_water_usage":0.0000075959897},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-2"}],"total_count":451}' - headers: - Content-Length: - - "106662" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 17 Jun 2025 13:29:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b3d0e009-e755-4cb5-b8c8-0fb84a513127 - status: 200 OK - code: 200 - duration: 133.96162ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=4&product_types=instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 105600 - uncompressed: false - body: '{"products":[{"description":"Compute POP2-32C-128G-WIN Instance - fr-par-1 (2.9133€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012825283,"m3_water_usage":0.0000010339977},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":913300000,"units":2}},"product":"POP2-32C-128G-WIN Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6.4 Gb/s, Public: 6.4 Gb/s","internal_bandwidth":6400000000,"max_public_bandwidth":6400000000,"public_bandwidth":6400000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-32C-128G-WIN","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_32c_128g_win/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-32C-128G-WIN Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - nl-ams-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03359226,"m3_water_usage":0.000042735806},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-1"},{"description":"Compute POP2-64C-256G Instance - fr-par-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018469302,"m3_water_usage":0.000011077198},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-2"},{"description":"Compute POP2-64C-256G Instance - fr-par-3 (3.525€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.023146395,"m3_water_usage":7.7742436e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":525000000,"units":3}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-3"},{"description":"Compute POP2-64C-256G Instance - nl-ams-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03417662},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-2"},{"description":"Compute POP2-64C-256G Instance - nl-ams-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.030551324},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - nl-ams-3"},{"description":"Compute POP2-64C-256G Instance - fr-par-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019149592,"m3_water_usage":0.0000012617403},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - fr-par-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-1 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06303802},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-1"},{"description":"Compute POP2-64C-256G Instance - pl-waw-2 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.05865259},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-2"},{"description":"Compute POP2-64C-256G Instance - pl-waw-3 (2.35€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.060924355},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":350000000,"units":2}},"product":"POP2-64C-256G Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 64","threads":64,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":64}},"network":{"description":"Internal: 12.8 Gb/s, Public: 12.8 Gb/s","internal_bandwidth":12800000000,"max_public_bandwidth":12800000000,"public_bandwidth":12800000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"POP2-64C-256G","range":"Production-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pop2_64c_256g/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute POP2-64C-256G Instance - pl-waw-3"},{"description":"Compute DEV1-S Instance - nl-ams-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039468515,"m3_water_usage":0.0000019305783},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-1"},{"description":"Compute DEV1-S Instance - fr-par-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0033914677,"m3_water_usage":6.979383e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-2"},{"description":"Compute DEV1-S Instance - nl-ams-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0041689426},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - nl-ams-2"},{"description":"Compute DEV1-S Instance - fr-par-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0033200448,"m3_water_usage":4.0370205e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - fr-par-1"},{"description":"Compute DEV1-S Instance - pl-waw-1 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0039457995},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-1"},{"description":"Compute DEV1-S Instance - pl-waw-2 (0.0088€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004946491},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":8800000,"units":0}},"product":"DEV1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-S Instance - pl-waw-2"},{"description":"Compute DEV1-M Instance - nl-ams-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0042514573,"m3_water_usage":0.0000023818268},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-1"},{"description":"Compute DEV1-M Instance - fr-par-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0035342188,"m3_water_usage":8.115467e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-2"},{"description":"Compute DEV1-M Instance - nl-ams-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0044763936},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - nl-ams-2"},{"description":"Compute DEV1-M Instance - fr-par-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0034717144,"m3_water_usage":4.1113438e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - fr-par-1"},{"description":"Compute DEV1-M Instance - pl-waw-1 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004583942},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-1"},{"description":"Compute DEV1-M Instance - pl-waw-2 (0.0198€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055179596},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":19800000,"units":0}},"product":"DEV1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 3","threads":3,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":3}},"network":{"description":"Internal: 300 Mb/s, Public: 300 Mb/s","internal_bandwidth":300000000,"max_public_bandwidth":300000000,"public_bandwidth":300000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-M Instance - pl-waw-2"},{"description":"Compute DEV1-L Instance - nl-ams-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004816689,"m3_water_usage":0.0000032190092},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-1"},{"description":"Compute DEV1-L Instance - fr-par-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.003799168,"m3_water_usage":0.0000010223197},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-2"},{"description":"Compute DEV1-L Instance - nl-ams-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050469046},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - nl-ams-2"},{"description":"Compute DEV1-L Instance - fr-par-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0037532104,"m3_water_usage":4.2492326e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - fr-par-1"},{"description":"Compute DEV1-L Instance - pl-waw-1 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057679694},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-1"},{"description":"Compute DEV1-L Instance - pl-waw-2 (0.042€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065782913},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42000000,"units":0}},"product":"DEV1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-L Instance - pl-waw-2"},{"description":"Compute DEV1-XL Instance - nl-ams-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005337941,"m3_water_usage":0.000003990877},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-1"},{"description":"Compute DEV1-XL Instance - fr-par-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040435647,"m3_water_usage":0.0000012166487},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-2"},{"description":"Compute DEV1-XL Instance - nl-ams-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005573024},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - nl-ams-2"},{"description":"Compute DEV1-XL Instance - fr-par-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0040128627,"m3_water_usage":4.3763637e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - fr-par-1"},{"description":"Compute DEV1-XL Instance - pl-waw-1 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0068597407},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-1"},{"description":"Compute DEV1-XL Instance - pl-waw-2 (0.063799999€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007556017},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":63799999,"units":0}},"product":"DEV1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"12 GiB","size":12884901888,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"DEV1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/dev1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute DEV1-XL Instance - pl-waw-2"},{"description":"Compute GP1-XS Instance - nl-ams-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006223226,"m3_water_usage":0.0000046352006},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-1"},{"description":"Compute GP1-XS Instance - fr-par-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0047205887,"m3_water_usage":0.0000014141812},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-2"},{"description":"Compute GP1-XS Instance - fr-par-3 (0.137€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007830672,"m3_water_usage":4.7005744e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":137000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-3"},{"description":"Compute GP1-XS Instance - nl-ams-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006497358},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - nl-ams-2"},{"description":"Compute GP1-XS Instance - fr-par-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0046843584,"m3_water_usage":5.1023284e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - fr-par-1"},{"description":"Compute GP1-XS Instance - pl-waw-1 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007983268},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-1"},{"description":"Compute GP1-XS Instance - pl-waw-2 (0.091€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008798667},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":91000000,"units":0}},"product":"GP1-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":4}},"network":{"description":"Internal: 500 Mb/s, Public: 500 Mb/s","internal_bandwidth":500000000,"max_public_bandwidth":500000000,"public_bandwidth":500000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XS Instance - pl-waw-2"},{"description":"Compute GP1-S Instance - nl-ams-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008248474,"m3_water_usage":0.000007620717},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-1"},{"description":"Compute GP1-S Instance - fr-par-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056749857,"m3_water_usage":0.0000021658288},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-2"},{"description":"Compute GP1-S Instance - fr-par-3 (0.281€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008840143,"m3_water_usage":4.841069e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":281000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-3"},{"description":"Compute GP1-S Instance - nl-ams-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008541433},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - nl-ams-2"},{"description":"Compute GP1-S Instance - fr-par-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005697763,"m3_water_usage":5.5940603e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - fr-par-1"},{"description":"Compute GP1-S Instance - pl-waw-1 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012215235},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-1"},{"description":"Compute GP1-S Instance - pl-waw-2 (0.187€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012589515},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":187000000,"units":0}},"product":"GP1-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-S Instance - pl-waw-2"},{"description":"Compute GP1-M Instance - nl-ams-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012298972,"m3_water_usage":0.00001359175},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-1"},{"description":"Compute GP1-M Instance - fr-par-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0075837793,"m3_water_usage":0.000003669124},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-2"},{"description":"Compute GP1-M Instance - fr-par-3 (0.564€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010859084,"m3_water_usage":5.1220593e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":564000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-3"},{"description":"Compute GP1-M Instance - nl-ams-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0126295835},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - nl-ams-2"},{"description":"Compute GP1-M Instance - fr-par-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007724573,"m3_water_usage":6.577524e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - fr-par-1"},{"description":"Compute GP1-M Instance - pl-waw-1 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020679168},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-1"},{"description":"Compute GP1-M Instance - pl-waw-2 (0.376€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020171212},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":376000000,"units":0}},"product":"GP1-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":16}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-M Instance - pl-waw-2"},{"description":"Compute GP1-L Instance - nl-ams-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.02039997,"m3_water_usage":0.000025533815},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-1"},{"description":"Compute GP1-L Instance - fr-par-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011401367,"m3_water_usage":0.0000066757148},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-2"},{"description":"Compute GP1-L Instance - nl-ams-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.020805884},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - nl-ams-2"},{"description":"Compute GP1-L Instance - fr-par-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011778192,"m3_water_usage":8.5444526e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - fr-par-1"},{"description":"Compute GP1-L Instance - pl-waw-1 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.037607037},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-1"},{"description":"Compute GP1-L Instance - pl-waw-2 (0.759€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.035334606},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":759000000,"units":0}},"product":"GP1-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":32}},"network":{"description":"Internal: 5 Gb/s, Public: 5 Gb/s","internal_bandwidth":5000000000,"max_public_bandwidth":5000000000,"public_bandwidth":5000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-L Instance - pl-waw-2"},{"description":"Compute GP1-XL Instance - nl-ams-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036069915,"m3_water_usage":0.000048633636},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-1"},{"description":"Compute GP1-XL Instance - fr-par-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018785818,"m3_water_usage":0.000012491434},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-2"},{"description":"Compute GP1-XL Instance - nl-ams-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.036621496},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - nl-ams-2"},{"description":"Compute GP1-XL Instance - fr-par-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.019619204,"m3_water_usage":0.0000012349129},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - fr-par-1"},{"description":"Compute GP1-XL Instance - pl-waw-1 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.07035101},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-1"},{"description":"Compute GP1-XL Instance - pl-waw-2 (1.641€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.06466551},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":641000000,"units":1}},"product":"GP1-XL Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7281 (2.1 GHz) or equivalent, x64, vCPUs: 48","threads":48,"type":"AMD EPYC™ 7281 (2.1 GHz) or equivalent","virtual":{"count":48}},"network":{"description":"Internal: 10 Gb/s, Public: 10 Gb/s","internal_bandwidth":10000000000,"max_public_bandwidth":10000000000,"public_bandwidth":10000000000},"ram":{"description":"256 GiB","size":274877906944,"type":""},"storage":{"description":"Dynamic local: 1 x SSD, Block","total":0}},"instance":{"offer_id":"GP1-XL","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/gp1_xl/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute GP1-XL Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055750073,"m3_water_usage":0.000002344065},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-1"},{"description":"Compute PLAY2-PICO Instance - fr-par-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049398537,"m3_water_usage":9.07983e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005904664},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-2"},{"description":"Compute PLAY2-PICO Instance - nl-ams-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004826421},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - nl-ams-3"},{"description":"Compute PLAY2-PICO Instance - fr-par-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0048218127,"m3_water_usage":5.9646453e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - fr-par-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-1 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051655695},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-1"},{"description":"Compute PLAY2-PICO Instance - pl-waw-2 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006748137},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-2"},{"description":"Compute PLAY2-PICO Instance - pl-waw-3 (0.014€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055647446},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":14000000,"units":0}},"product":"PLAY2-PICO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 1","threads":1,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":1}},"network":{"description":"Internal: 100 Mb/s, Public: 100 Mb/s","internal_bandwidth":100000000,"max_public_bandwidth":100000000,"public_bandwidth":100000000},"ram":{"description":"2 GiB","size":2147483648,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-PICO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_pico/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-PICO Instance - pl-waw-3"},{"description":"Compute PLAY2-NANO Instance - nl-ams-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0057526156,"m3_water_usage":0.0000025671072},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-1"},{"description":"Compute PLAY2-NANO Instance - fr-par-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0050374605,"m3_water_usage":9.641373e-7},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0060836785},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-2"},{"description":"Compute PLAY2-NANO Instance - nl-ams-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0049913707},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - nl-ams-3"},{"description":"Compute PLAY2-NANO Instance - fr-par-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.004923828,"m3_water_usage":6.001382e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - fr-par-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-1 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055080373},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-1"},{"description":"Compute PLAY2-NANO Instance - pl-waw-2 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070576495},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-2"},{"description":"Compute PLAY2-NANO Instance - pl-waw-3 (0.027€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0058933366},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":27000000,"units":0}},"product":"PLAY2-NANO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"4 GiB","size":4294967296,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-NANO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_nano/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-NANO Instance - pl-waw-3"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006107832,"m3_water_usage":0.0000030131919},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-1"},{"description":"Compute PLAY2-MICRO Instance - fr-par-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005232674,"m3_water_usage":0.0000010764455},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006441708},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-2"},{"description":"Compute PLAY2-MICRO Instance - nl-ams-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0053212703},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - nl-ams-3"},{"description":"Compute PLAY2-MICRO Instance - fr-par-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051278584,"m3_water_usage":6.0748545e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - fr-par-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-1 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0061929733},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-1"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-2 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076766755},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-2"},{"description":"Compute PLAY2-MICRO Instance - pl-waw-3 (0.054€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006550521},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":54000000,"units":0}},"product":"PLAY2-MICRO Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PLAY2-MICRO","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/play2_micro/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PLAY2-MICRO Instance - pl-waw-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0062074205,"m3_water_usage":0.0000032614155},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-1"},{"description":"Compute PRO2-XXS Instance - fr-par-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005243229,"m3_water_usage":0.0000011389395},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-2"},{"description":"Compute PRO2-XXS Instance - fr-par-3 (0.082€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009192135,"m3_water_usage":5.916625e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":82000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-3"},{"description":"Compute PRO2-XXS Instance - nl-ams-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065428615},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-2"},{"description":"Compute PRO2-XXS Instance - nl-ams-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0054067713},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - nl-ams-3"},{"description":"Compute PRO2-XXS Instance - fr-par-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0051433197,"m3_water_usage":6.1157385e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - fr-par-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-1 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006476034},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-1"},{"description":"Compute PRO2-XXS Instance - pl-waw-2 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00792306},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-2"},{"description":"Compute PRO2-XXS Instance - pl-waw-3 (0.055€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006818139},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":55000000,"units":0}},"product":"PRO2-XXS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 2","threads":2,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 350 Mb/s, Public: 350 Mb/s","internal_bandwidth":350000000,"max_public_bandwidth":350000000,"public_bandwidth":350000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XXS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xxs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XXS Instance - pl-waw-3"}],"total_count":451}' - headers: - Content-Length: - - "105600" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 17 Jun 2025 13:29:13 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - f8b7f7d7-1b0d-4b7b-a54f-399ab04ce41b - status: 200 OK - code: 200 - duration: 77.733002ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.1; linux; amd64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/product-catalog/v2alpha1/public-catalog/products?page=5&product_types=instance - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 52772 - uncompressed: false - body: '{"products":[{"description":"Compute PRO2-XS Instance - nl-ams-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0070174416,"m3_water_usage":0.0000044018084},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-1"},{"description":"Compute PRO2-XS Instance - fr-par-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0056442115,"m3_water_usage":0.0000014260502},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-2"},{"description":"Compute PRO2-XS Instance - fr-par-3 (0.164€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009614155,"m3_water_usage":5.9702904e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":164000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-3"},{"description":"Compute PRO2-XS Instance - nl-ams-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007360074},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-2"},{"description":"Compute PRO2-XS Instance - nl-ams-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006152072},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - nl-ams-3"},{"description":"Compute PRO2-XS Instance - fr-par-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0055668415,"m3_water_usage":6.303568e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - fr-par-1"},{"description":"Compute PRO2-XS Instance - pl-waw-1 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008128967},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-1"},{"description":"Compute PRO2-XS Instance - pl-waw-2 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.009407496},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-2"},{"description":"Compute PRO2-XS Instance - pl-waw-3 (0.11€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008400126},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":110000000,"units":0}},"product":"PRO2-XS Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 4","threads":4,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 700 Mb/s, Public: 700 Mb/s","internal_bandwidth":700000000,"max_public_bandwidth":700000000,"public_bandwidth":700000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-XS","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_xs/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-XS Instance - pl-waw-3"},{"description":"Compute PRO2-S Instance - nl-ams-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008637484,"m3_water_usage":0.000006682594},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-1"},{"description":"Compute PRO2-S Instance - fr-par-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0064461767,"m3_water_usage":0.0000020002715},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-2"},{"description":"Compute PRO2-S Instance - fr-par-3 (0.329€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010458193,"m3_water_usage":6.0776216e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":329000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-3"},{"description":"Compute PRO2-S Instance - nl-ams-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008994499},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-2"},{"description":"Compute PRO2-S Instance - nl-ams-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0076426733},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - nl-ams-3"},{"description":"Compute PRO2-S Instance - fr-par-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006413886,"m3_water_usage":6.679227e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - fr-par-1"},{"description":"Compute PRO2-S Instance - pl-waw-1 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011434832},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-1"},{"description":"Compute PRO2-S Instance - pl-waw-2 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012376369},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-2"},{"description":"Compute PRO2-S Instance - pl-waw-3 (0.219€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011564099},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":219000000,"units":0}},"product":"PRO2-S Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 8","threads":8,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 1.5 Gb/s, Public: 1.5 Gb/s","internal_bandwidth":1500000000,"max_public_bandwidth":1500000000,"public_bandwidth":1500000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-S","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_s/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-S Instance - pl-waw-3"},{"description":"Compute PRO2-M Instance - nl-ams-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011877569,"m3_water_usage":0.000011244166},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-1"},{"description":"Compute PRO2-M Instance - fr-par-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0080501065,"m3_water_usage":0.0000031487143},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-2"},{"description":"Compute PRO2-M Instance - fr-par-3 (0.658€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012146271,"m3_water_usage":6.292284e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":658000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-3"},{"description":"Compute PRO2-M Instance - nl-ams-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.012263349},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-2"},{"description":"Compute PRO2-M Instance - nl-ams-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.010623876},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - nl-ams-3"},{"description":"Compute PRO2-M Instance - fr-par-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008107974,"m3_water_usage":7.4305444e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - fr-par-1"},{"description":"Compute PRO2-M Instance - pl-waw-1 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018046562},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-1"},{"description":"Compute PRO2-M Instance - pl-waw-2 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018314114},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-2"},{"description":"Compute PRO2-M Instance - pl-waw-3 (0.438€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017892046},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":438000000,"units":0}},"product":"PRO2-M Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 16","threads":16,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 3 Gb/s, Public: 3 Gb/s","internal_bandwidth":3000000000,"max_public_bandwidth":3000000000,"public_bandwidth":3000000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-M","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_m/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-M Instance - pl-waw-3"},{"description":"Compute PRO2-L Instance - nl-ams-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018357739,"m3_water_usage":0.000020367308},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-1"},{"description":"Compute PRO2-L Instance - fr-par-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011257966,"m3_water_usage":0.0000054455995},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-2"},{"description":"Compute PRO2-L Instance - fr-par-3 (1.315€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.015522426,"m3_water_usage":6.721608e-7},"locality":{"zone":"fr-par-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":315000000,"units":1}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_fr-par-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-3"},{"description":"Compute PRO2-L Instance - nl-ams-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.018801048},"locality":{"zone":"nl-ams-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-2"},{"description":"Compute PRO2-L Instance - nl-ams-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.016586281},"locality":{"zone":"nl-ams-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_nl-ams-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - nl-ams-3"},{"description":"Compute PRO2-L Instance - fr-par-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01149615,"m3_water_usage":8.93318e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - fr-par-1"},{"description":"Compute PRO2-L Instance - pl-waw-1 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.031270023},"locality":{"zone":"pl-waw-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-1"},{"description":"Compute PRO2-L Instance - pl-waw-2 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.030189604},"locality":{"zone":"pl-waw-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-2"},{"description":"Compute PRO2-L Instance - pl-waw-3 (0.877€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.03054794},"locality":{"zone":"pl-waw-3"},"price":{"retail_price":{"currency_code":"EUR","nanos":877000000,"units":0}},"product":"PRO2-L Instance","properties":{"hardware":{"cpu":{"arch":"x64","description":"AMD EPYC™ 7543 (2.8 GHz), x64, vCPUs: 32","threads":32,"type":"AMD EPYC™ 7543 (2.8 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 6 Gb/s, Public: 6 Gb/s","internal_bandwidth":6000000000,"max_public_bandwidth":6000000000,"public_bandwidth":6000000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"PRO2-L","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/pro2_l/run_pl-waw-3","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute PRO2-L Instance - pl-waw-3"},{"description":"Compute COPARM1-2C-8G Instance - nl-ams-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006371064,"m3_water_usage":0.0000031480374},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - nl-ams-1"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-2 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005457169,"m3_water_usage":0.000001125279},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-2"},{"description":"Compute COPARM1-2C-8G Instance - fr-par-1 (0.0426€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005347321,"m3_water_usage":6.3583116e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":42600000,"units":0}},"product":"COPARM1-2C-8G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 2","threads":2,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":2}},"network":{"description":"Internal: 200 Mb/s, Public: 200 Mb/s","internal_bandwidth":200000000,"max_public_bandwidth":200000000,"public_bandwidth":200000000},"ram":{"description":"8 GiB","size":8589934592,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-2C-8G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_2c_8g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-2C-8G Instance - fr-par-1"},{"description":"Compute COPARM1-4C-16G Instance - nl-ams-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.007091966,"m3_water_usage":0.0000040757236},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - nl-ams-1"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-2 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005845326,"m3_water_usage":0.0000013588377},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-2"},{"description":"Compute COPARM1-4C-16G Instance - fr-par-1 (0.0857€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.005753814,"m3_water_usage":6.5111067e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":85700000,"units":0}},"product":"COPARM1-4C-16G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 4","threads":4,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":4}},"network":{"description":"Internal: 400 Mb/s, Public: 400 Mb/s","internal_bandwidth":400000000,"max_public_bandwidth":400000000,"public_bandwidth":400000000},"ram":{"description":"16 GiB","size":17179869184,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-4C-16G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_4c_16g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-4C-16G Instance - fr-par-1"},{"description":"Compute COPARM1-8C-32G Instance - nl-ams-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00853377,"m3_water_usage":0.000005931096},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - nl-ams-1"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-2 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.006621641,"m3_water_usage":0.000001825955},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-2"},{"description":"Compute COPARM1-8C-32G Instance - fr-par-1 (0.1724€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.0065667992,"m3_water_usage":6.8166975e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":172400000,"units":0}},"product":"COPARM1-8C-32G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 8","threads":8,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":8}},"network":{"description":"Internal: 800 Mb/s, Public: 800 Mb/s","internal_bandwidth":800000000,"max_public_bandwidth":800000000,"public_bandwidth":800000000},"ram":{"description":"32 GiB","size":34359738368,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-8C-32G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_8c_32g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-8C-32G Instance - fr-par-1"},{"description":"Compute COPARM1-16C-64G Instance - nl-ams-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011417379,"m3_water_usage":0.000009641841},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - nl-ams-1"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-2 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.00817427,"m3_water_usage":0.0000027601895},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-2"},{"description":"Compute COPARM1-16C-64G Instance - fr-par-1 (0.3454€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.008192771,"m3_water_usage":7.427879e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":345400000,"units":0}},"product":"COPARM1-16C-64G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 16","threads":16,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":16}},"network":{"description":"Internal: 1.6 Gb/s, Public: 1.6 Gb/s","internal_bandwidth":1600000000,"max_public_bandwidth":1600000000,"public_bandwidth":1600000000},"ram":{"description":"64 GiB","size":68719476736,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-16C-64G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_16c_64g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-16C-64G Instance - fr-par-1"},{"description":"Compute COPARM1-32C-128G Instance - nl-ams-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.017184595,"m3_water_usage":0.00001706333},"locality":{"zone":"nl-ams-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_ams1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - nl-ams-1"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-2 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.01127953,"m3_water_usage":0.000004628659},"locality":{"zone":"fr-par-2"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_fr-par-2","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-2"},{"description":"Compute COPARM1-32C-128G Instance - fr-par-1 (0.6935€ per hour)","environmental_impact_estimation":{"kg_co2_equivalent":0.011444714,"m3_water_usage":8.650242e-7},"locality":{"zone":"fr-par-1"},"price":{"retail_price":{"currency_code":"EUR","nanos":693500000,"units":0}},"product":"COPARM1-32C-128G Instance","properties":{"hardware":{"cpu":{"arch":"arm64","description":"AMPERE ALTRA MAX (3 GHz), arm64, vCPUs: 32","threads":32,"type":"AMPERE ALTRA MAX (3 GHz)","virtual":{"count":32}},"network":{"description":"Internal: 3.2 Gb/s, Public: 3.2 Gb/s","internal_bandwidth":3200000000,"max_public_bandwidth":3200000000,"public_bandwidth":3200000000},"ram":{"description":"128 GiB","size":137438953472,"type":""},"storage":{"description":"Block","total":0}},"instance":{"offer_id":"COPARM1-32C-128G","range":"Cost-Optimized","recommended_replacement_offer_ids":[]}},"service_category":"Compute","sku":"/compute/coparm1_32c_128g/run_par1","status":"general_availability","unit_of_measure":{"size":1,"unit":"hour"},"variant":"Compute COPARM1-32C-128G Instance - fr-par-1"}],"total_count":451}' - headers: - Content-Length: - - "52772" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Tue, 17 Jun 2025 13:29:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - db7e38b6-470c-4052-aa45-e72bf51b7209 - status: 200 OK - code: 200 - duration: 77.320277ms + duration: 154.625208ms From 3a8e6d360c67f551a66f33a9ec74621210572482 Mon Sep 17 00:00:00 2001 From: Guillaume Noale Date: Mon, 30 Jun 2025 14:34:16 +0200 Subject: [PATCH 5/8] feat(object): support the group bucket ACL (#3185) * feat(object): support the group bucket ACL * update doc --- docs/resources/object_bucket_acl.md | 5 +- internal/services/object/bucket_acl.go | 85 +- internal/services/object/bucket_acl_test.go | 38 +- internal/services/object/object.go | 2 +- ...ucket-acl-grantee-with-owner.cassette.yaml | 448 +++--- .../object-bucket-acl-grantee.cassette.yaml | 1290 ++++++++++------- 6 files changed, 1119 insertions(+), 749 deletions(-) diff --git a/docs/resources/object_bucket_acl.md b/docs/resources/object_bucket_acl.md index 1d5010d3e7..917651692a 100644 --- a/docs/resources/object_bucket_acl.md +++ b/docs/resources/object_bucket_acl.md @@ -114,8 +114,9 @@ The `owner` configuration block supports the following arguments: The `grantee` configuration block supports the following arguments: -* `id` - (Required) The canonical user ID of the grantee. -* `type` - (Required) Type of grantee. Valid values: CanonicalUser. +* `id` - (Optional) The canonical user ID of the grantee. +* `type` - (Required) Type of grantee. Valid values: CanonicalUser, Group. +* `uri` - (Optional) The uri of the grantee if type is Group. ## Attributes Reference diff --git a/internal/services/object/bucket_acl.go b/internal/services/object/bucket_acl.go index f854221357..daf248e79c 100644 --- a/internal/services/object/bucket_acl.go +++ b/internal/services/object/bucket_acl.go @@ -23,6 +23,10 @@ import ( const ( BucketACLSeparator = "/" + + // AWS predefined group URIs for bucket ACL grants + AuthenticatedUsersURI = "http://acs.amazonaws.com/groups/global/AuthenticatedUsers" + AllUsersURI = "http://acs.amazonaws.com/groups/global/AllUsers" ) func ResourceBucketACL() *schema.Resource { @@ -60,17 +64,26 @@ func ResourceBucketACL() *schema.Resource { Type: schema.TypeString, Computed: true, }, + "uri": { + Type: schema.TypeString, + Optional: true, + Description: "The uri of the grantee if you are granting permissions to a predefined group.", + ValidateFunc: validation.StringInSlice([]string{ + AuthenticatedUsersURI, + AllUsersURI, + }, false), + }, "id": { Type: schema.TypeString, - Required: true, + Optional: true, Description: "The project ID owner of the grantee.", ValidateDiagFunc: verify.IsUUID(), }, "type": { Type: schema.TypeString, - Required: true, - Description: "Type of grantee. Valid values: `CanonicalUser`", - ValidateFunc: validation.StringInSlice([]string{string(s3Types.TypeCanonicalUser)}, false), + Optional: true, + Description: "Type of grantee. Valid values: `CanonicalUser`, `Group`", + ValidateFunc: validation.StringInSlice([]string{string(s3Types.TypeCanonicalUser), string(s3Types.TypeGroup)}, false), }, }, }, @@ -183,7 +196,12 @@ func resourceBucketACLCreate(ctx context.Context, d *schema.ResourceData, m any) } if v, ok := d.GetOk("access_control_policy"); ok && len(v.([]any)) > 0 && v.([]any)[0] != nil { - input.AccessControlPolicy = expandBucketACLAccessControlPolicy(v.([]any)) + accessControlPolicy, err := expandAndValidateBucketACLAccessControlPolicy(v.([]any)) + if err != nil { + return diag.FromErr(err) + } + + input.AccessControlPolicy = accessControlPolicy } out, err := conn.PutBucketAcl(ctx, input) @@ -198,30 +216,35 @@ func resourceBucketACLCreate(ctx context.Context, d *schema.ResourceData, m any) return resourceBucketACLRead(ctx, d, m) } -func expandBucketACLAccessControlPolicy(l []any) *s3Types.AccessControlPolicy { +func expandAndValidateBucketACLAccessControlPolicy(l []any) (*s3Types.AccessControlPolicy, error) { if len(l) == 0 || l[0] == nil { - return nil + return nil, nil } tfMap, ok := l[0].(map[string]any) if !ok { - return nil + return nil, nil } result := &s3Types.AccessControlPolicy{} if v, ok := tfMap["grant"].(*schema.Set); ok && v.Len() > 0 { - result.Grants = expandBucketACLAccessControlPolicyGrants(v.List()) + grants, err := expandAndValidateBucketACLAccessControlPolicyGrants(v.List()) + if err != nil { + return nil, err + } + + result.Grants = grants } if v, ok := tfMap["owner"].([]any); ok && len(v) > 0 && v[0] != nil { result.Owner = expandBucketACLAccessControlPolicyOwner(v) } - return result + return result, nil } -func expandBucketACLAccessControlPolicyGrants(l []any) []s3Types.Grant { +func expandAndValidateBucketACLAccessControlPolicyGrants(l []any) ([]s3Types.Grant, error) { grants := make([]s3Types.Grant, 0, len(l)) for _, tfMapRaw := range l { @@ -233,7 +256,12 @@ func expandBucketACLAccessControlPolicyGrants(l []any) []s3Types.Grant { grant := s3Types.Grant{} if v, ok := tfMap["grantee"].([]any); ok && len(v) > 0 && v[0] != nil { - grant.Grantee = expandBucketACLAccessControlPolicyGrantsGrantee(v) + grantee, err := expandAndValidateBucketACLAccessControlPolicyGrantsGrantee(v) + if err != nil { + return nil, err + } + + grant.Grantee = grantee } if v, ok := tfMap["permission"].(string); ok && v != "" { @@ -243,17 +271,17 @@ func expandBucketACLAccessControlPolicyGrants(l []any) []s3Types.Grant { grants = append(grants, grant) } - return grants + return grants, nil } -func expandBucketACLAccessControlPolicyGrantsGrantee(l []any) *s3Types.Grantee { +func expandAndValidateBucketACLAccessControlPolicyGrantsGrantee(l []any) (*s3Types.Grantee, error) { if len(l) == 0 || l[0] == nil { - return nil + return nil, nil } tfMap, ok := l[0].(map[string]any) if !ok { - return nil + return nil, nil } result := &s3Types.Grantee{} @@ -262,11 +290,23 @@ func expandBucketACLAccessControlPolicyGrantsGrantee(l []any) *s3Types.Grantee { result.ID = buildBucketOwnerID(aws.String(v)) } + if v, ok := tfMap["uri"].(string); ok && v != "" { + result.URI = aws.String(v) + } + if v, ok := tfMap["type"].(string); ok && v != "" { result.Type = s3Types.Type(v) } - return result + if result.Type == s3Types.TypeCanonicalUser && result.ID == nil { + return nil, errors.New("id is required when grantee type is CanonicalUser") + } + + if result.Type == s3Types.TypeGroup && result.URI == nil { + return nil, errors.New("uri is required when grantee type is Group") + } + + return result, nil } func expandBucketACLAccessControlPolicyOwner(l []any) *s3Types.Owner { @@ -345,6 +385,10 @@ func flattenBucketACLAccessControlPolicyGrantsGrantee(grantee *s3Types.Grantee) m["display_name"] = NormalizeOwnerID(grantee.DisplayName) } + if grantee.URI != nil { + m["uri"] = *grantee.URI + } + if grantee.ID != nil { m["id"] = NormalizeOwnerID(grantee.ID) } @@ -451,7 +495,12 @@ func resourceBucketACLUpdate(ctx context.Context, d *schema.ResourceData, m any) } if d.HasChange("access_control_policy") { - input.AccessControlPolicy = expandBucketACLAccessControlPolicy(d.Get("access_control_policy").([]any)) + accessControlPolicy, err := expandAndValidateBucketACLAccessControlPolicy(d.Get("access_control_policy").([]any)) + if err != nil { + return diag.FromErr(err) + } + + input.AccessControlPolicy = accessControlPolicy } _, err = conn.PutBucketAcl(ctx, input) diff --git a/internal/services/object/bucket_acl_test.go b/internal/services/object/bucket_acl_test.go index 2ec09a7533..8887ca10e2 100644 --- a/internal/services/object/bucket_acl_test.go +++ b/internal/services/object/bucket_acl_test.go @@ -80,8 +80,7 @@ func TestAccObjectBucketACL_Grantee(t *testing.T) { testBucketName := sdkacctest.RandomWithPrefix("tf-tests-scw-object-acl-grantee") - ownerID := "105bdce1-64c0-48ab-899d-868455867ecf" - ownerIDChild := "50ab77d5-56bd-4981-a118-4e0fa5309b59" + ownerID := "105bdce1-64c0-48ab-899d-868455867ecf" // scaleway-dev-tools-org resource.Test(t, resource.TestCase{ PreCheck: func() { acctest.PreCheck(t) }, ProviderFactories: tt.ProviderFactories, @@ -128,9 +127,13 @@ func TestAccObjectBucketACL_Grantee(t *testing.T) { Config: fmt.Sprintf(` resource "scaleway_object_bucket" "main" { name = "%[1]s" - region = "%[4]s" + region = "%[3]s" } - + + data "scaleway_iam_user" "devtool" { + email = "developer-tools-team@scaleway.com" + } + resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.id access_control_policy { @@ -141,7 +144,7 @@ func TestAccObjectBucketACL_Grantee(t *testing.T) { } permission = "FULL_CONTROL" } - + grant { grantee { id = "%[2]s" @@ -149,21 +152,36 @@ func TestAccObjectBucketACL_Grantee(t *testing.T) { } permission = "WRITE" } - + grant { grantee { - id = "%[3]s" + id = data.scaleway_iam_user.devtool.id type = "CanonicalUser" } permission = "FULL_CONTROL" } - + + grant { + grantee { + uri = "%[4]s" + type = "Group" + } + permission = "READ_ACP" + } + + grant { + grantee { + uri = "%[5]s" + type = "Group" + } + permission = "READ" + } owner { id = "%[2]s" } } } - `, testBucketName, ownerID, ownerIDChild, objectTestsMainRegion), + `, testBucketName, ownerID, objectTestsMainRegion, object.AuthenticatedUsersURI, object.AllUsersURI), Check: resource.ComposeTestCheckFunc( objectchecks.CheckBucketExists(tt, "scaleway_object_bucket.main", true), resource.TestCheckResourceAttr("scaleway_object_bucket_acl.main", "bucket", testBucketName), @@ -263,7 +281,7 @@ func TestAccObjectBucketACL_WithBucketName(t *testing.T) { name = "%s" region = "%s" } - + resource "scaleway_object_bucket_acl" "main" { bucket = scaleway_object_bucket.main.name acl = "public-read" diff --git a/internal/services/object/object.go b/internal/services/object/object.go index ba14fe5478..62f863299d 100644 --- a/internal/services/object/object.go +++ b/internal/services/object/object.go @@ -445,7 +445,7 @@ func objectIsPublic(acl *s3.GetObjectAclOutput) bool { for _, grant := range acl.Grants { if grant.Grantee != nil && grant.Grantee.Type == s3Types.TypeGroup && - *grant.Grantee.URI == "http://acs.amazonaws.com/groups/global/AllUsers" { + *grant.Grantee.URI == AllUsersURI { return true } } diff --git a/internal/services/object/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml b/internal/services/object/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml index 6c081f8a56..ac9915e825 100644 --- a/internal/services/object/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml +++ b/internal/services/object/testdata/object-bucket-acl-grantee-with-owner.cassette.yaml @@ -9,7 +9,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -18,16 +18,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d077f62c-21ef-4819-b887-e4e45dc1a498 + - c50495c4-8de6-40b8-9297-92b6896c17ae Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162151Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/ + - 20250627T144014Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/ method: PUT response: proto: HTTP/2.0 @@ -42,16 +42,16 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:51 GMT + - Fri, 27 Jun 2025 14:40:14 GMT Location: - - /tf-tests-scw-object-acl-owner-6655780527603664660 + - /tf-tests-scw-object-acl-owner-5490936030420655748 X-Amz-Id-2: - - txgb9fc5776237e4a3b9ab4-0067586a9f + - txgff2b3779f89d4cbd8800-00685ead4e X-Amz-Request-Id: - - txgb9fc5776237e4a3b9ab4-0067586a9f + - txgff2b3779f89d4cbd8800-00685ead4e status: 200 OK code: 200 - duration: 554.476083ms + duration: 4.5527125s - id: 1 request: proto: HTTP/1.1 @@ -60,7 +60,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -69,18 +69,20 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fe6988bb-2ed7-431f-8d5d-64610063613b + - 62777a4f-9b3d-4b92-93e0-eee130b6b2c7 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e X-Amz-Acl: - private + X-Amz-Checksum-Crc32: + - AAAAAA== X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + - 20250627T144018Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -95,14 +97,14 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:18 GMT X-Amz-Id-2: - - txgbbd86fb399f244a4baf6-0067586aa0 + - txgf012d7317e6d4de28e13-00685ead52 X-Amz-Request-Id: - - txgbbd86fb399f244a4baf6-0067586aa0 + - txgf012d7317e6d4de28e13-00685ead52 status: 200 OK code: 200 - duration: 157.799791ms + duration: 253.356708ms - id: 2 request: proto: HTTP/1.1 @@ -111,7 +113,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -120,16 +122,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 39e84aca-5778-46e0-8f73-fdc6aade857b + - bf4c79d6-fbd3-453f-ad7a-1f5fc4e84c48 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + - 20250627T144019Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -148,14 +150,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:19 GMT X-Amz-Id-2: - - txgc3532820a87a4cf6b4b4-0067586aa0 + - txg25f14e3d214a4e688343-00685ead53 X-Amz-Request-Id: - - txgc3532820a87a4cf6b4b4-0067586aa0 + - txg25f14e3d214a4e688343-00685ead53 status: 200 OK code: 200 - duration: 63.542167ms + duration: 148.42875ms - id: 3 request: proto: HTTP/1.1 @@ -164,7 +166,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -173,16 +175,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - af668dde-2cea-4d6d-8b50-bcbbd1a76a3f + - bc804731-46bf-46ed-a16a-13b6f1da3399 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144019Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -192,21 +194,21 @@ interactions: trailer: {} content_length: 318 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgb69f84876e1e462ca012-0067586aa0txgb69f84876e1e462ca012-0067586aa0/tf-tests-scw-object-acl-owner-6655780527603664660 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg25b4466f50404ea1b009-00685ead53txg25b4466f50404ea1b009-00685ead53/tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "318" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:19 GMT X-Amz-Id-2: - - txgb69f84876e1e462ca012-0067586aa0 + - txg25b4466f50404ea1b009-00685ead53 X-Amz-Request-Id: - - txgb69f84876e1e462ca012-0067586aa0 + - txg25b4466f50404ea1b009-00685ead53 status: 404 Not Found code: 404 - duration: 84.436916ms + duration: 223.962583ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +217,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -224,16 +226,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 279aadea-cabf-4cee-be89-b1fdff03455e + - 09dc6d1d-016b-4ba8-a530-79c84208b8a3 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/ + - 20250627T144019Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -245,21 +247,21 @@ interactions: uncompressed: false body: |- - tf-tests-scw-object-acl-owner-66557805276036646601000false + tf-tests-scw-object-acl-owner-54909360304206557481000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:19 GMT X-Amz-Id-2: - - txg57c93d03e78642a486a7-0067586aa0 + - txged76672e64e94f69ad9f-00685ead53 X-Amz-Request-Id: - - txg57c93d03e78642a486a7-0067586aa0 + - txged76672e64e94f69ad9f-00685ead53 status: 200 OK code: 200 - duration: 305.562833ms + duration: 370.735417ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +270,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -277,16 +279,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - adc3f839-346c-42bc-887d-222a80d7e280 + - 0463ec86-3ecf-493d-a221-1a3ede15931e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144019Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -296,21 +298,21 @@ interactions: trailer: {} content_length: 337 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg5cda7d017b5741dbb2e0-0067586aa0txg5cda7d017b5741dbb2e0-0067586aa0/tf-tests-scw-object-acl-owner-6655780527603664660tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchTagSetThe TagSet does not existtxg735e9a9f429f4f02a5ea-00685ead53txg735e9a9f429f4f02a5ea-00685ead53/tf-tests-scw-object-acl-owner-5490936030420655748tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "337" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:19 GMT X-Amz-Id-2: - - txg5cda7d017b5741dbb2e0-0067586aa0 + - txg735e9a9f429f4f02a5ea-00685ead53 X-Amz-Request-Id: - - txg5cda7d017b5741dbb2e0-0067586aa0 + - txg735e9a9f429f4f02a5ea-00685ead53 status: 404 Not Found code: 404 - duration: 60.679333ms + duration: 95.431917ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +321,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -328,16 +330,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 25fbecd6-c0e1-4f86-a123-254a4896f7b3 + - e630793e-8d64-41d2-b4c1-3625a048e5cf Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?cors= + - 20250627T144019Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -347,21 +349,21 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg797cd058fab0424c9a8e-0067586aa0txg797cd058fab0424c9a8e-0067586aa0/tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgeba99ca6fd84470abda6-00685ead53txgeba99ca6fd84470abda6-00685ead53/tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "286" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:19 GMT X-Amz-Id-2: - - txg797cd058fab0424c9a8e-0067586aa0 + - txgeba99ca6fd84470abda6-00685ead53 X-Amz-Request-Id: - - txg797cd058fab0424c9a8e-0067586aa0 + - txgeba99ca6fd84470abda6-00685ead53 status: 404 Not Found code: 404 - duration: 81.122042ms + duration: 155.264458ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +372,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -379,16 +381,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7e7b73a6-91e7-4fe4-a12a-41fca4757e13 + - d9f70eae-cc20-41db-82b7-eeb4b32b543f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162152Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144020Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -396,25 +398,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:52 GMT + - Fri, 27 Jun 2025 14:40:20 GMT X-Amz-Id-2: - - txga9e6b577379042948254-0067586aa0 + - txg25e6e9b5bb5a41bfa376-00685ead54 X-Amz-Request-Id: - - txga9e6b577379042948254-0067586aa0 + - txg25e6e9b5bb5a41bfa376-00685ead54 status: 200 OK code: 200 - duration: 105.747875ms + duration: 95.155792ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +425,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -432,16 +434,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 3bd9eff5-3a32-4668-9855-a63434e3a7ad + - 21b485eb-2bcc-4945-98f4-5d757ca9c23b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162153Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144020Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -451,21 +453,21 @@ interactions: trailer: {} content_length: 370 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg51a8735a675e410b8201-0067586aa1txg51a8735a675e410b8201-0067586aa1/tf-tests-scw-object-acl-owner-6655780527603664660tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxga48c5199eeeb41e09a5f-00685ead54txga48c5199eeeb41e09a5f-00685ead54/tf-tests-scw-object-acl-owner-5490936030420655748tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "370" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:53 GMT + - Fri, 27 Jun 2025 14:40:20 GMT X-Amz-Id-2: - - txg51a8735a675e410b8201-0067586aa1 + - txga48c5199eeeb41e09a5f-00685ead54 X-Amz-Request-Id: - - txg51a8735a675e410b8201-0067586aa1 + - txga48c5199eeeb41e09a5f-00685ead54 status: 404 Not Found code: 404 - duration: 86.679375ms + duration: 178.958458ms - id: 9 request: proto: HTTP/1.1 @@ -474,31 +476,31 @@ interactions: content_length: 684 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf form: {} headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 546680f4-ad60-440a-909f-069a710cb686 + - b7a8b114-7c63-46cd-852b-373423ed8c96 Amz-Sdk-Request: - attempt=1; max=3 - Content-Md5: - - hyolSq3koUeG8L+6oSV/Yw== Content-Type: - application/xml User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e + X-Amz-Checksum-Crc32: + - 77p35w== X-Amz-Content-Sha256: - - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 + - 714991239842ab4e62f63588f9025da2e29eb7f956eb72e26447cff75eee7dcb X-Amz-Date: - - 20241210T162153Z + - 20250627T144020Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -513,14 +515,14 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:53 GMT + - Fri, 27 Jun 2025 14:40:20 GMT X-Amz-Id-2: - - txg70622596fbac4b2f84d2-0067586aa1 + - txgf06dc19e38c14f9db3ee-00685ead54 X-Amz-Request-Id: - - txg70622596fbac4b2f84d2-0067586aa1 + - txgf06dc19e38c14f9db3ee-00685ead54 status: 200 OK code: 200 - duration: 119.355292ms + duration: 219.040334ms - id: 10 request: proto: HTTP/1.1 @@ -529,7 +531,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -538,18 +540,18 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f2e2a822-a4ab-43f2-93c2-436a462038d6 + - 103e340e-d5ca-4f38-959f-536e4a42de36 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162153Z + - 20250627T144020Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -561,21 +563,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:53 GMT + - Fri, 27 Jun 2025 14:40:20 GMT X-Amz-Id-2: - - txga4ab6b09fb014364990a-0067586aa1 + - txg1499d33e06af4eecb3f9-00685ead54 X-Amz-Request-Id: - - txga4ab6b09fb014364990a-0067586aa1 + - txg1499d33e06af4eecb3f9-00685ead54 status: 200 OK code: 200 - duration: 84.215292ms + duration: 121.784292ms - id: 11 request: proto: HTTP/1.1 @@ -584,7 +586,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -593,16 +595,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 96874e3a-6e06-4b02-96ec-3d7e0b717016 + - c8041b1b-25c6-4353-b804-f6f6db21b8b2 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162153Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/ + - 20250627T144020Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/ method: HEAD response: proto: HTTP/2.0 @@ -617,16 +619,16 @@ interactions: Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:53 GMT + - Fri, 27 Jun 2025 14:40:20 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg0b9e143d6fd342d3af02-0067586aa1 + - txgba46b2cbd69047f28a6c-00685ead54 X-Amz-Request-Id: - - txg0b9e143d6fd342d3af02-0067586aa1 + - txgba46b2cbd69047f28a6c-00685ead54 status: 200 OK code: 200 - duration: 76.33075ms + duration: 123.3525ms - id: 12 request: proto: HTTP/1.1 @@ -635,7 +637,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -644,16 +646,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - b7100a3a-795c-4804-8d34-a62bde23516c + - 414ca828-8ef3-40c4-a302-7e862c93565e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162154Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -665,21 +667,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:54 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txg377514fe25ea4d7286b8-0067586aa2 + - txg81953b66afd64f598d02-00685ead55 X-Amz-Request-Id: - - txg377514fe25ea4d7286b8-0067586aa2 + - txg81953b66afd64f598d02-00685ead55 status: 200 OK code: 200 - duration: 87.981542ms + duration: 103.917584ms - id: 13 request: proto: HTTP/1.1 @@ -688,7 +690,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -697,16 +699,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 4da4fb75-f10f-440c-8eb1-5ab7b0396b3e + - 3d5ada16-1386-42e3-8c3d-4b46ec187d0e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162154Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -716,21 +718,21 @@ interactions: trailer: {} content_length: 318 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg53e76c6a2abe4629b3c7-0067586aa2txg53e76c6a2abe4629b3c7-0067586aa2/tf-tests-scw-object-acl-owner-6655780527603664660 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxge5a126573aeb43c69c36-00685ead55txge5a126573aeb43c69c36-00685ead55/tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "318" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:54 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txg53e76c6a2abe4629b3c7-0067586aa2 + - txge5a126573aeb43c69c36-00685ead55 X-Amz-Request-Id: - - txg53e76c6a2abe4629b3c7-0067586aa2 + - txge5a126573aeb43c69c36-00685ead55 status: 404 Not Found code: 404 - duration: 138.352042ms + duration: 22.449583ms - id: 14 request: proto: HTTP/1.1 @@ -739,7 +741,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -748,16 +750,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1392eaf0-d98f-4bd7-83e6-2916a6201ea9 + - 6c7114c6-9048-4172-a023-9967ea224bf8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162154Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/ + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -769,21 +771,21 @@ interactions: uncompressed: false body: |- - tf-tests-scw-object-acl-owner-66557805276036646601000false + tf-tests-scw-object-acl-owner-54909360304206557481000false headers: Content-Length: - "275" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:54 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txg654c2388b76d4256bc3d-0067586aa2 + - txg81c22efd73924bef8613-00685ead55 X-Amz-Request-Id: - - txg654c2388b76d4256bc3d-0067586aa2 + - txg81c22efd73924bef8613-00685ead55 status: 200 OK code: 200 - duration: 163.260875ms + duration: 446.013958ms - id: 15 request: proto: HTTP/1.1 @@ -792,7 +794,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -801,16 +803,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 880baf51-f6bf-4e70-a89d-805da8b00f06 + - 6692854f-bf76-4fb8-b977-c16c6fe0a97e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162154Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -820,21 +822,21 @@ interactions: trailer: {} content_length: 337 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg35e522f1b33e4b02a32d-0067586aa2txg35e522f1b33e4b02a32d-0067586aa2/tf-tests-scw-object-acl-owner-6655780527603664660tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchTagSetThe TagSet does not existtxgead86bed49f244a79c5c-00685ead55txgead86bed49f244a79c5c-00685ead55/tf-tests-scw-object-acl-owner-5490936030420655748tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "337" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:54 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txg35e522f1b33e4b02a32d-0067586aa2 + - txgead86bed49f244a79c5c-00685ead55 X-Amz-Request-Id: - - txg35e522f1b33e4b02a32d-0067586aa2 + - txgead86bed49f244a79c5c-00685ead55 status: 404 Not Found code: 404 - duration: 105.629333ms + duration: 121.820625ms - id: 16 request: proto: HTTP/1.1 @@ -843,7 +845,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -852,16 +854,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e0057054-bbc6-462e-926e-65b8d57d2089 + - 54924c11-7fb9-4a09-a07e-3f6fb107cd7c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162154Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?cors= + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -871,21 +873,21 @@ interactions: trailer: {} content_length: 286 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxgf90ec8a4257c419b83e8-0067586aa2txgf90ec8a4257c419b83e8-0067586aa2/tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgf3e351a79bfc4988ab23-00685ead55txgf3e351a79bfc4988ab23-00685ead55/tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "286" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:54 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txgf90ec8a4257c419b83e8-0067586aa2 + - txgf3e351a79bfc4988ab23-00685ead55 X-Amz-Request-Id: - - txgf90ec8a4257c419b83e8-0067586aa2 + - txgf3e351a79bfc4988ab23-00685ead55 status: 404 Not Found code: 404 - duration: 78.813625ms + duration: 88.281917ms - id: 17 request: proto: HTTP/1.1 @@ -894,7 +896,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -903,16 +905,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d08a3bfd-13a9-4951-bc03-2864d4e37df7 + - 8649ff54-d276-4d11-9a11-92607a50e18f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162155Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144021Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -920,25 +922,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:55 GMT + - Fri, 27 Jun 2025 14:40:21 GMT X-Amz-Id-2: - - txgad37c388ca3c44219438-0067586aa3 + - txg8216fd2d837a425caea1-00685ead55 X-Amz-Request-Id: - - txgad37c388ca3c44219438-0067586aa3 + - txg8216fd2d837a425caea1-00685ead55 status: 200 OK code: 200 - duration: 58.751375ms + duration: 125.382583ms - id: 18 request: proto: HTTP/1.1 @@ -947,7 +949,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -956,16 +958,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 15e7af7e-0ebf-4088-916a-e257fd1cce7e + - 108f6c88-86f8-4474-8c30-137a0af19eca Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162155Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144022Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -975,21 +977,21 @@ interactions: trailer: {} content_length: 370 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd8431d0a9b9545c8940f-0067586aa3txgd8431d0a9b9545c8940f-0067586aa3/tf-tests-scw-object-acl-owner-6655780527603664660tf-tests-scw-object-acl-owner-6655780527603664660 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgddd3d3ace9a74685bcaa-00685ead56txgddd3d3ace9a74685bcaa-00685ead56/tf-tests-scw-object-acl-owner-5490936030420655748tf-tests-scw-object-acl-owner-5490936030420655748 headers: Content-Length: - "370" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:55 GMT + - Fri, 27 Jun 2025 14:40:22 GMT X-Amz-Id-2: - - txgd8431d0a9b9545c8940f-0067586aa3 + - txgddd3d3ace9a74685bcaa-00685ead56 X-Amz-Request-Id: - - txgd8431d0a9b9545c8940f-0067586aa3 + - txgddd3d3ace9a74685bcaa-00685ead56 status: 404 Not Found code: 404 - duration: 113.61525ms + duration: 71.461917ms - id: 19 request: proto: HTTP/1.1 @@ -998,7 +1000,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1007,18 +1009,18 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 3d477038-88d2-42e4-89bb-1f370f0ca38f + - 41868a0a-adc3-4339-886d-22988ac6e48f Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162155Z + - 20250627T144022Z X-Amz-Expected-Bucket-Owner: - 105bdce1-64c0-48ab-899d-868455867ecf - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1030,21 +1032,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:55 GMT + - Fri, 27 Jun 2025 14:40:22 GMT X-Amz-Id-2: - - txg5f4b2288f96141b4a6f0-0067586aa3 + - txgbb151fc383684e779d3f-00685ead56 X-Amz-Request-Id: - - txg5f4b2288f96141b4a6f0-0067586aa3 + - txgbb151fc383684e779d3f-00685ead56 status: 200 OK code: 200 - duration: 16.562667ms + duration: 158.845625ms - id: 20 request: proto: HTTP/1.1 @@ -1053,7 +1055,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1062,18 +1064,20 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 9393a868-65ad-4568-9f03-b81cec18d6a7 + - 9723a36a-32c1-46cf-8260-9a2de9885b10 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e X-Amz-Acl: - private + X-Amz-Checksum-Crc32: + - AAAAAA== X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162156Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/?acl= + - 20250627T144022Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -1088,14 +1092,14 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:56 GMT + - Fri, 27 Jun 2025 14:40:22 GMT X-Amz-Id-2: - - txgd5fb5da0c97340259738-0067586aa4 + - txg807432c5a7474cdca656-00685ead56 X-Amz-Request-Id: - - txgd5fb5da0c97340259738-0067586aa4 + - txg807432c5a7474cdca656-00685ead56 status: 200 OK code: 200 - duration: 113.970791ms + duration: 100.44925ms - id: 21 request: proto: HTTP/1.1 @@ -1104,7 +1108,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1113,16 +1117,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - afe4545b-f929-4e0e-8229-f363bcfc8464 + - 2103387c-2258-4a81-92b3-4b8d8fd50a7e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162156Z - url: https://tf-tests-scw-object-acl-owner-6655780527603664660.s3.nl-ams.scw.cloud/ + - 20250627T144022Z + url: https://tf-tests-scw-object-acl-owner-5490936030420655748.s3.nl-ams.scw.cloud/ method: DELETE response: proto: HTTP/2.0 @@ -1135,11 +1139,11 @@ interactions: body: "" headers: Date: - - Tue, 10 Dec 2024 16:21:56 GMT + - Fri, 27 Jun 2025 14:40:22 GMT X-Amz-Id-2: - - txga44c6bc2997e4754969d-0067586aa4 + - txg2206a09825284bbd959e-00685ead56 X-Amz-Request-Id: - - txga44c6bc2997e4754969d-0067586aa4 + - txg2206a09825284bbd959e-00685ead56 status: 204 No Content code: 204 - duration: 168.918ms + duration: 300.519792ms diff --git a/internal/services/object/testdata/object-bucket-acl-grantee.cassette.yaml b/internal/services/object/testdata/object-bucket-acl-grantee.cassette.yaml index d98baf21a2..2b01b33b60 100644 --- a/internal/services/object/testdata/object-bucket-acl-grantee.cassette.yaml +++ b/internal/services/object/testdata/object-bucket-acl-grantee.cassette.yaml @@ -9,7 +9,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -18,16 +18,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0f11b126-400b-4441-9770-70de7f588d59 + - f19310a2-752e-4d0b-86e6-7c89ed783611 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T143959Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: PUT response: proto: HTTP/2.0 @@ -42,16 +42,16 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:39:59 GMT Location: - - /tf-tests-scw-object-acl-grantee-6595573726931431576 + - /tf-tests-scw-object-acl-grantee-886509375894998972 X-Amz-Id-2: - - txg02000b2d2f8044c988d0-0067586a97 + - txg0998fb09c88740e486ab-00685ead3f X-Amz-Request-Id: - - txg02000b2d2f8044c988d0-0067586a97 + - txg0998fb09c88740e486ab-00685ead3f status: 200 OK code: 200 - duration: 495.880667ms + duration: 5.411994792s - id: 1 request: proto: HTTP/1.1 @@ -60,7 +60,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -69,18 +69,20 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 5e44e168-4b0a-4252-bd45-eecb23b18bce + - 56253fd7-af7f-43c7-9054-e2ef718f7ce3 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e X-Amz-Acl: - private + X-Amz-Checksum-Crc32: + - AAAAAA== X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144004Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -95,14 +97,14 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:04 GMT X-Amz-Id-2: - - txgdec081b36d2d4142a9f4-0067586a97 + - txg1804ec64b6a74a5782b7-00685ead44 X-Amz-Request-Id: - - txgdec081b36d2d4142a9f4-0067586a97 + - txg1804ec64b6a74a5782b7-00685ead44 status: 200 OK code: 200 - duration: 73.8325ms + duration: 391.127917ms - id: 2 request: proto: HTTP/1.1 @@ -111,7 +113,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -120,16 +122,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 73b5bc34-e5dd-47a6-8959-034f5df8ddb9 + - 2c22405a-b081-436f-b28e-b6f97e7b94e5 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144005Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -148,14 +150,14 @@ interactions: Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:05 GMT X-Amz-Id-2: - - txg8465463d6c9743fca04d-0067586a97 + - txg18be346020f64ae08963-00685ead45 X-Amz-Request-Id: - - txg8465463d6c9743fca04d-0067586a97 + - txg18be346020f64ae08963-00685ead45 status: 200 OK code: 200 - duration: 25.419667ms + duration: 91.598416ms - id: 3 request: proto: HTTP/1.1 @@ -164,7 +166,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -173,16 +175,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 0f4b9368-ff89-4b61-917d-d300bbea9c12 + - f2477a01-a4cc-4d36-a7d6-2687a8d6f51c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144005Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -190,23 +192,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 319 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg71af90c9df3e41f6a7e8-0067586a97txg71af90c9df3e41f6a7e8-0067586a97/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg2eec9fc2f89f4cd8a609-00685ead45txg2eec9fc2f89f4cd8a609-00685ead45/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "320" + - "319" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:05 GMT X-Amz-Id-2: - - txg71af90c9df3e41f6a7e8-0067586a97 + - txg2eec9fc2f89f4cd8a609-00685ead45 X-Amz-Request-Id: - - txg71af90c9df3e41f6a7e8-0067586a97 + - txg2eec9fc2f89f4cd8a609-00685ead45 status: 404 Not Found code: 404 - duration: 43.372042ms + duration: 218.5665ms - id: 4 request: proto: HTTP/1.1 @@ -215,7 +217,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -224,16 +226,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 64080bcc-0d10-4ca6-afe9-fd2817693f10 + - fb854000-a9ea-4353-9b8a-5dbaab03e577 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144005Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -241,25 +243,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277 + content_length: 276 uncompressed: false body: |- - tf-tests-scw-object-acl-grantee-65955737269314315761000false + tf-tests-scw-object-acl-grantee-8865093758949989721000false headers: Content-Length: - - "277" + - "276" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:05 GMT X-Amz-Id-2: - - txg23d7ee619bf84750a41d-0067586a97 + - txg27274779659d46d59ed4-00685ead45 X-Amz-Request-Id: - - txg23d7ee619bf84750a41d-0067586a97 + - txg27274779659d46d59ed4-00685ead45 status: 200 OK code: 200 - duration: 86.0455ms + duration: 344.634375ms - id: 5 request: proto: HTTP/1.1 @@ -268,7 +270,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -277,16 +279,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 656bf684-4c6f-4d50-a505-734572a39b46 + - 0926e04f-80a9-41c4-9e4d-d47df34fe92b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144005Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -294,23 +296,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 339 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxgf78137eda88441f7ab33-0067586a97txgf78137eda88441f7ab33-0067586a97/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchTagSetThe TagSet does not existtxgb26d42043d2e419a9fd5-00685ead45txgb26d42043d2e419a9fd5-00685ead45/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "341" + - "339" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:05 GMT X-Amz-Id-2: - - txgf78137eda88441f7ab33-0067586a97 + - txgb26d42043d2e419a9fd5-00685ead45 X-Amz-Request-Id: - - txgf78137eda88441f7ab33-0067586a97 + - txgb26d42043d2e419a9fd5-00685ead45 status: 404 Not Found code: 404 - duration: 54.274166ms + duration: 121.803542ms - id: 6 request: proto: HTTP/1.1 @@ -319,7 +321,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -328,16 +330,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - ac3e9faf-8761-4963-afc7-fcf0298d30ab + - 1fbb185c-07c8-4d69-9e89-0b5da31a17df Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?cors= + - 20250627T144005Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -345,23 +347,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 287 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxgb168007a4f9c4009a834-0067586a97txgb168007a4f9c4009a834-0067586a97/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg39db5030b4124010ab17-00685ead45txg39db5030b4124010ab17-00685ead45/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "288" + - "287" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:05 GMT X-Amz-Id-2: - - txgb168007a4f9c4009a834-0067586a97 + - txg39db5030b4124010ab17-00685ead45 X-Amz-Request-Id: - - txgb168007a4f9c4009a834-0067586a97 + - txg39db5030b4124010ab17-00685ead45 status: 404 Not Found code: 404 - duration: 49.729291ms + duration: 124.25675ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +372,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -379,16 +381,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 8ad2dc6b-65cf-4abe-939e-3a16afcec62e + - 4f2150cf-f433-4349-8907-2a306a24753d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144006Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -396,25 +398,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:06 GMT X-Amz-Id-2: - - txgaf196d0a78ce40339173-0067586a97 + - txg66d000cd5abb4c96a98d-00685ead46 X-Amz-Request-Id: - - txgaf196d0a78ce40339173-0067586a97 + - txg66d000cd5abb4c96a98d-00685ead46 status: 200 OK code: 200 - duration: 42.487125ms + duration: 185.435208ms - id: 8 request: proto: HTTP/1.1 @@ -423,7 +425,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -432,16 +434,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - c1f1c161-d783-4095-98da-cdb36c384734 + - d0a053e9-dfea-436a-b79f-bf30b2e7ff93 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144006Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -449,23 +451,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 372 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgd719416956cf4a06b3e9-0067586a97txgd719416956cf4a06b3e9-0067586a97/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgc567db8095394f7bbc2c-00685ead46txgc567db8095394f7bbc2c-00685ead46/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "374" + - "372" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:06 GMT X-Amz-Id-2: - - txgd719416956cf4a06b3e9-0067586a97 + - txgc567db8095394f7bbc2c-00685ead46 X-Amz-Request-Id: - - txgd719416956cf4a06b3e9-0067586a97 + - txgc567db8095394f7bbc2c-00685ead46 status: 404 Not Found code: 404 - duration: 44.433208ms + duration: 91.854ms - id: 9 request: proto: HTTP/1.1 @@ -474,29 +476,29 @@ interactions: content_length: 684 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf form: {} headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - be5af575-5554-46cc-bd6d-6af3c27f8b1f + - 247aa960-73ca-41bb-9531-75ff101d05fd Amz-Sdk-Request: - attempt=1; max=3 - Content-Md5: - - hyolSq3koUeG8L+6oSV/Yw== Content-Type: - application/xml User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e + X-Amz-Checksum-Crc32: + - 77p35w== X-Amz-Content-Sha256: - - 894d438eed42dfd288716d6ff6a48b6be5515e9452ed58d924757813130fdf06 + - 714991239842ab4e62f63588f9025da2e29eb7f956eb72e26447cff75eee7dcb X-Amz-Date: - - 20241210T162143Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144006Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -511,14 +513,14 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:43 GMT + - Fri, 27 Jun 2025 14:40:06 GMT X-Amz-Id-2: - - txgeeaba760f50648a3a32a-0067586a97 + - txg06c7683951304b458f90-00685ead46 X-Amz-Request-Id: - - txgeeaba760f50648a3a32a-0067586a97 + - txg06c7683951304b458f90-00685ead46 status: 200 OK code: 200 - duration: 39.92425ms + duration: 247.118792ms - id: 10 request: proto: HTTP/1.1 @@ -527,7 +529,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -536,16 +538,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - b857447a-f91b-4fdc-8bba-723e3c255b39 + - 701b84b7-5580-4b1d-a06a-456aff3c7ff5 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162144Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144006Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -557,21 +559,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:44 GMT + - Fri, 27 Jun 2025 14:40:06 GMT X-Amz-Id-2: - - txga8082c3d4c734d4c8bb6-0067586a98 + - txgd70f36e952f14778838f-00685ead46 X-Amz-Request-Id: - - txga8082c3d4c734d4c8bb6-0067586a98 + - txgd70f36e952f14778838f-00685ead46 status: 200 OK code: 200 - duration: 44.278084ms + duration: 166.6635ms - id: 11 request: proto: HTTP/1.1 @@ -580,7 +582,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -589,16 +591,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - d491c037-d7ab-4cf9-baec-bb67e31604ac + - 528fd225-eb9f-4524-af36-5a9dceb957ff Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162144Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144006Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: HEAD response: proto: HTTP/2.0 @@ -613,16 +615,16 @@ interactions: Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:44 GMT + - Fri, 27 Jun 2025 14:40:06 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txg3ccb19ac67a54a978f36-0067586a98 + - txga2f090010bc04f3ba519-00685ead46 X-Amz-Request-Id: - - txg3ccb19ac67a54a978f36-0067586a98 + - txga2f090010bc04f3ba519-00685ead46 status: 200 OK code: 200 - duration: 60.043ms + duration: 119.337583ms - id: 12 request: proto: HTTP/1.1 @@ -631,7 +633,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -640,16 +642,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 45e21335-3085-4309-adfb-cb4c22079459 + - d5c65ede-f449-4ae1-9982-f1875e947e13 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162144Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144007Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -661,21 +663,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:44 GMT + - Fri, 27 Jun 2025 14:40:07 GMT X-Amz-Id-2: - - txg85e7e5843abf4f78a195-0067586a98 + - txg4d35b3392ef647c8a6a9-00685ead47 X-Amz-Request-Id: - - txg85e7e5843abf4f78a195-0067586a98 + - txg4d35b3392ef647c8a6a9-00685ead47 status: 200 OK code: 200 - duration: 43.988625ms + duration: 161.104083ms - id: 13 request: proto: HTTP/1.1 @@ -684,7 +686,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -693,16 +695,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 97d000cc-3c26-417b-a66d-4a5ddaee4b4e + - fa970f51-301b-4160-bc46-ad1f76f6b431 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162144Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144007Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -710,23 +712,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 319 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg3d31e6cef5bf42e2b352-0067586a98txg3d31e6cef5bf42e2b352-0067586a98/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg2c9fabf091084522a47e-00685ead47txg2c9fabf091084522a47e-00685ead47/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "320" + - "319" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:44 GMT + - Fri, 27 Jun 2025 14:40:07 GMT X-Amz-Id-2: - - txg3d31e6cef5bf42e2b352-0067586a98 + - txg2c9fabf091084522a47e-00685ead47 X-Amz-Request-Id: - - txg3d31e6cef5bf42e2b352-0067586a98 + - txg2c9fabf091084522a47e-00685ead47 status: 404 Not Found code: 404 - duration: 47.76025ms + duration: 156.49875ms - id: 14 request: proto: HTTP/1.1 @@ -735,7 +737,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -744,16 +746,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 14e8d2c3-46ae-4992-ad2f-d6a2248fa2b3 + - be40d7af-a11a-4d86-afd9-b157cb67dc98 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144007Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -761,25 +763,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277 + content_length: 276 uncompressed: false body: |- - tf-tests-scw-object-acl-grantee-65955737269314315761000false + tf-tests-scw-object-acl-grantee-8865093758949989721000false headers: Content-Length: - - "277" + - "276" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:07 GMT X-Amz-Id-2: - - txg58f5a1c82fea45d4b247-0067586a99 + - txgfc7eaa4430a2421baf55-00685ead47 X-Amz-Request-Id: - - txg58f5a1c82fea45d4b247-0067586a99 + - txgfc7eaa4430a2421baf55-00685ead47 status: 200 OK code: 200 - duration: 66.508917ms + duration: 224.395458ms - id: 15 request: proto: HTTP/1.1 @@ -788,7 +790,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -797,16 +799,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f87388ab-f20d-42ef-8785-c15690af0e8a + - 86066e88-476c-4026-81f2-76a71370004c Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144007Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -814,23 +816,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 339 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg56bead17627940458cfe-0067586a99txg56bead17627940458cfe-0067586a99/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchTagSetThe TagSet does not existtxg419e435fa6e243b9b1bc-00685ead47txg419e435fa6e243b9b1bc-00685ead47/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "341" + - "339" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:07 GMT X-Amz-Id-2: - - txg56bead17627940458cfe-0067586a99 + - txg419e435fa6e243b9b1bc-00685ead47 X-Amz-Request-Id: - - txg56bead17627940458cfe-0067586a99 + - txg419e435fa6e243b9b1bc-00685ead47 status: 404 Not Found code: 404 - duration: 26.40025ms + duration: 117.596333ms - id: 16 request: proto: HTTP/1.1 @@ -839,7 +841,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -848,16 +850,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 257583d8-01a9-44cd-a2cf-78b1eb34eac0 + - 584c6391-50fd-41c9-8ebb-775862e69264 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?cors= + - 20250627T144007Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -865,23 +867,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 287 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg1e068f5ee8bf4223b70a-0067586a99txg1e068f5ee8bf4223b70a-0067586a99/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg390308d76aa54e04a991-00685ead47txg390308d76aa54e04a991-00685ead47/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "288" + - "287" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:07 GMT X-Amz-Id-2: - - txg1e068f5ee8bf4223b70a-0067586a99 + - txg390308d76aa54e04a991-00685ead47 X-Amz-Request-Id: - - txg1e068f5ee8bf4223b70a-0067586a99 + - txg390308d76aa54e04a991-00685ead47 status: 404 Not Found code: 404 - duration: 26.579125ms + duration: 177.45225ms - id: 17 request: proto: HTTP/1.1 @@ -890,7 +892,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -899,16 +901,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7feec1a0-db1a-4322-854d-85760fb23c8c + - e15e855e-0045-4c0e-846f-547dc475fc7e Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -916,25 +918,25 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txg62858c6c3be7447c80d9-0067586a99 + - txg7be063f266d043bebfba-00685ead48 X-Amz-Request-Id: - - txg62858c6c3be7447c80d9-0067586a99 + - txg7be063f266d043bebfba-00685ead48 status: 200 OK code: 200 - duration: 13.582584ms + duration: 152.849791ms - id: 18 request: proto: HTTP/1.1 @@ -943,7 +945,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -952,16 +954,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f2bc75e2-bb74-45e0-84b4-bdd65f4b483f + - 6ac9a0c7-4566-4f7f-9b66-cb9947b5c02b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -969,23 +971,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 372 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxga61a697eeccd4fc9b1ce-0067586a99txga61a697eeccd4fc9b1ce-0067586a99/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg2dd5e57112104654b778-00685ead48txg2dd5e57112104654b778-00685ead48/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "374" + - "372" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txga61a697eeccd4fc9b1ce-0067586a99 + - txg2dd5e57112104654b778-00685ead48 X-Amz-Request-Id: - - txga61a697eeccd4fc9b1ce-0067586a99 + - txg2dd5e57112104654b778-00685ead48 status: 404 Not Found code: 404 - duration: 52.224459ms + duration: 135.7575ms - id: 19 request: proto: HTTP/1.1 @@ -994,7 +996,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1003,16 +1005,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e1d2fa15-bc9a-41e9-8a7e-e3ccc45f992e + - b0dfbdd7-308e-414d-ae89-fd312d74cc94 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1024,21 +1026,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txg004e29c6796c41c2ae0f-0067586a99 + - txgbfaeef30fbcf467a8584-00685ead48 X-Amz-Request-Id: - - txg004e29c6796c41c2ae0f-0067586a99 + - txgbfaeef30fbcf467a8584-00685ead48 status: 200 OK code: 200 - duration: 15.9725ms + duration: 217.311166ms - id: 20 request: proto: HTTP/1.1 @@ -1047,7 +1049,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1056,16 +1058,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 3b5b35b2-96b9-44cb-aaf8-194f2fc5f142 + - 77a1d960-941c-4ffc-b0b0-c322fe5807bc Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162145Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1077,21 +1079,21 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:45 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txg1a293b43aa0f4aa7a4fa-0067586a99 + - txg5d30398b8b4344859ac1-00685ead48 X-Amz-Request-Id: - - txg1a293b43aa0f4aa7a4fa-0067586a99 + - txg5d30398b8b4344859ac1-00685ead48 status: 200 OK code: 200 - duration: 27.452667ms + duration: 159.689166ms - id: 21 request: proto: HTTP/1.1 @@ -1100,7 +1102,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1109,16 +1111,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1b083763-aedb-4c08-afee-19fcfd301fe6 + - 64acdc5d-a212-4ace-af46-cd26bdff053b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -1126,23 +1128,23 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 319 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgaf79e57b259347d6a1e3-0067586a9atxgaf79e57b259347d6a1e3-0067586a9a/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxgd68e1e252c6641b39db6-00685ead48txgd68e1e252c6641b39db6-00685ead48/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "320" + - "319" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txgaf79e57b259347d6a1e3-0067586a9a + - txgd68e1e252c6641b39db6-00685ead48 X-Amz-Request-Id: - - txgaf79e57b259347d6a1e3-0067586a9a + - txgd68e1e252c6641b39db6-00685ead48 status: 404 Not Found code: 404 - duration: 14.979917ms + duration: 20.444958ms - id: 22 request: proto: HTTP/1.1 @@ -1151,7 +1153,56 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:08 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 90c99f97-5262-4a43-8173-99db1ee83fd8 + status: 200 OK + code: 200 + duration: 185.972292ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1160,16 +1211,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 49184fdd-4fad-4a7b-b9ad-103852a077da + - 392cb225-c46b-4206-99b2-7e79a5d5dc90 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144008Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -1177,26 +1228,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277 + content_length: 276 uncompressed: false body: |- - tf-tests-scw-object-acl-grantee-65955737269314315761000false + tf-tests-scw-object-acl-grantee-8865093758949989721000false headers: Content-Length: - - "277" + - "276" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:08 GMT X-Amz-Id-2: - - txgf994a428184d4ebca1fd-0067586a9a + - txg30ab754a50a2445db68d-00685ead48 X-Amz-Request-Id: - - txgf994a428184d4ebca1fd-0067586a9a + - txg30ab754a50a2445db68d-00685ead48 status: 200 OK code: 200 - duration: 71.587459ms - - id: 23 + duration: 448.335167ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1204,7 +1255,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1213,16 +1264,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 394ce1e3-a314-455f-9acf-565160aa5194 + - 8014800e-4f9a-4ad4-b8f4-755e9d268f16 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144009Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -1230,24 +1281,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 339 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg3fca2987638e41b6878a-0067586a9atxg3fca2987638e41b6878a-0067586a9a/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchTagSetThe TagSet does not existtxg6342ec55a913497e8168-00685ead49txg6342ec55a913497e8168-00685ead49/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "341" + - "339" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:09 GMT X-Amz-Id-2: - - txg3fca2987638e41b6878a-0067586a9a + - txg6342ec55a913497e8168-00685ead49 X-Amz-Request-Id: - - txg3fca2987638e41b6878a-0067586a9a + - txg6342ec55a913497e8168-00685ead49 status: 404 Not Found code: 404 - duration: 14.420417ms - - id: 24 + duration: 185.652375ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1255,7 +1306,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1264,16 +1315,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f3c6decf-9621-4fcc-b3f3-dd720192f425 + - 81d6ab26-684e-4e6d-85fd-6ed660035818 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?cors= + - 20250627T144009Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -1281,24 +1332,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 287 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxge4ab400567b74664a639-0067586a9atxge4ab400567b74664a639-0067586a9a/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxgfd1b1d4504e646008d39-00685ead49txgfd1b1d4504e646008d39-00685ead49/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "288" + - "287" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:09 GMT X-Amz-Id-2: - - txge4ab400567b74664a639-0067586a9a + - txgfd1b1d4504e646008d39-00685ead49 X-Amz-Request-Id: - - txge4ab400567b74664a639-0067586a9a + - txgfd1b1d4504e646008d39-00685ead49 status: 404 Not Found code: 404 - duration: 46.483958ms - - id: 25 + duration: 124.6265ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1306,7 +1357,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1315,16 +1366,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 78fb1e10-840a-4c4a-a04c-750932e0d9a7 + - 5f917baa-3729-4e6a-be0c-0d33be5bee1a Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144009Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -1332,26 +1383,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:09 GMT X-Amz-Id-2: - - txg395c59081b434af2b3cd-0067586a9a + - txg7c90211e0990490c924a-00685ead49 X-Amz-Request-Id: - - txg395c59081b434af2b3cd-0067586a9a + - txg7c90211e0990490c924a-00685ead49 status: 200 OK code: 200 - duration: 42.513541ms - - id: 26 + duration: 158.905125ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1359,7 +1410,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1368,16 +1419,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - be8df7af-79ac-46d4-8476-10742a8c25a0 + - 420ba2df-a64c-4c17-8ed0-f60982095298 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144009Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -1385,24 +1436,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 372 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxga32d8a0c50404af2abfe-0067586a9atxga32d8a0c50404af2abfe-0067586a9a/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg22a9b185241c46bca8b1-00685ead49txg22a9b185241c46bca8b1-00685ead49/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "374" + - "372" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:09 GMT X-Amz-Id-2: - - txga32d8a0c50404af2abfe-0067586a9a + - txg22a9b185241c46bca8b1-00685ead49 X-Amz-Request-Id: - - txga32d8a0c50404af2abfe-0067586a9a + - txg22a9b185241c46bca8b1-00685ead49 status: 404 Not Found code: 404 - duration: 130.691375ms - - id: 27 + duration: 178.007958ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1410,7 +1461,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1419,16 +1470,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bb3d6c69-9a0b-4de8-8245-caa5eed366af + - 6f445361-9f0c-4af0-88ba-f50af3c7e007 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162146Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144010Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1440,52 +1491,101 @@ interactions: uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE headers: Content-Length: - "1023" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:46 GMT + - Fri, 27 Jun 2025 14:40:10 GMT X-Amz-Id-2: - - txg4f97ac0b0db241fabb8f-0067586a9a + - txg4c99149883624007a992-00685ead4a X-Amz-Request-Id: - - txg4f97ac0b0db241fabb8f-0067586a9a + - txg4c99149883624007a992-00685ead4a status: 200 OK code: 200 - duration: 15.038ms - - id: 28 + duration: 123.802208ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:10 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66210d99-1897-4d6a-898b-e941654cfa81 + status: 200 OK + code: 200 + duration: 173.1955ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 1016 + content_length: 1414 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" - body: 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf + body: http://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD_ACP105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE84d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e0FULL_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf form: {} headers: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f5974e56-8cd9-4d10-8486-47dc52d9b33c + - bdb91eea-1c5b-48c2-a13a-c38dbe77871c Amz-Sdk-Request: - attempt=1; max=3 - Content-Md5: - - XDTmysPz6iilCSi58r2ijQ== Content-Type: - application/xml User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e + X-Amz-Checksum-Crc32: + - bznEAQ== X-Amz-Content-Sha256: - - e34c50821643ee3e652f0d4488f9885ddb3bba7393b50498ba849c4bdb4b2cb2 + - d1ab50f1faf0973692fc92e42cb86c5e69cc43a84f2fd1ee278f9b227d0cb923 X-Amz-Date: - - 20241210T162147Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144010Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -1500,15 +1600,15 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:47 GMT + - Fri, 27 Jun 2025 14:40:10 GMT X-Amz-Id-2: - - txgfca1efc9341c41eb945b-0067586a9b + - txg0af5492b185a433fa36c-00685ead4a X-Amz-Request-Id: - - txgfca1efc9341c41eb945b-0067586a9b + - txg0af5492b185a433fa36c-00685ead4a status: 200 OK code: 200 - duration: 72.84025ms - - id: 29 + duration: 22.286292ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1516,7 +1616,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1525,16 +1625,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 93601b8c-6bf4-4466-9aaf-cef84532bb55 + - a027a226-39ae-4efc-a85c-b777f794224d Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162147Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144010Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1542,26 +1642,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1753 uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b5950ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD_ACP105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE84d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e084d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e0FULL_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - - "1355" + - "1753" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:47 GMT + - Fri, 27 Jun 2025 14:40:10 GMT X-Amz-Id-2: - - txg2c5e112b90494475a731-0067586a9b + - txg8d99fe895a3c4610966c-00685ead4a X-Amz-Request-Id: - - txg2c5e112b90494475a731-0067586a9b + - txg8d99fe895a3c4610966c-00685ead4a status: 200 OK code: 200 - duration: 83.092166ms - - id: 30 + duration: 122.185709ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1569,7 +1669,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1578,16 +1678,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - fa21b7fb-2844-44a9-b9f2-12c77f20f387 + - 30698de1-5f0e-48b1-ad10-5727ad7f0262 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162147Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144010Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: HEAD response: proto: HTTP/2.0 @@ -1602,17 +1702,66 @@ interactions: Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:47 GMT + - Fri, 27 Jun 2025 14:40:10 GMT X-Amz-Bucket-Region: - nl-ams X-Amz-Id-2: - - txgd6124710ccba4b25ab8e-0067586a9b + - txgd06fb6b48a034d2b9636-00685ead4a X-Amz-Request-Id: - - txgd6124710ccba4b25ab8e-0067586a9b + - txgd06fb6b48a034d2b9636-00685ead4a status: 200 OK code: 200 - duration: 46.139917ms - - id: 31 + duration: 92.220667ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cce06253-76ed-4fdb-a26e-99c9392424f1 + status: 200 OK + code: 200 + duration: 151.94625ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1620,7 +1769,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1629,16 +1778,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e2db6e2a-cb6e-470f-bb44-d1f76ea92389 + - 36868577-7ef0-4cfa-83bf-dfa8dc24ad63 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144011Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -1646,26 +1795,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1753 uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b5950ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD_ACP105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE84d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e084d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e0FULL_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - - "1355" + - "1753" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:11 GMT X-Amz-Id-2: - - txgab7c55685400456ab1e5-0067586a9c + - txgc5a288d5c902433184e3-00685ead4b X-Amz-Request-Id: - - txgab7c55685400456ab1e5-0067586a9c + - txgc5a288d5c902433184e3-00685ead4b status: 200 OK code: 200 - duration: 46.750458ms - - id: 32 + duration: 21.866167ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1673,7 +1822,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1682,16 +1831,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a3b64294-c806-44e8-8b93-4fd954e47075 + - 7480952a-e2e7-48b2-8771-86f2896507e0 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?object-lock= + - 20250627T144011Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?object-lock= method: GET response: proto: HTTP/2.0 @@ -1699,24 +1848,73 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 320 + content_length: 319 uncompressed: false - body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg332af5357b804631aa7f-0067586a9ctxg332af5357b804631aa7f-0067586a9c/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: ObjectLockConfigurationNotFoundErrorObject Lock configuration does not exist for this buckettxg4a1332a85e1944a09899-00685ead4btxg4a1332a85e1944a09899-00685ead4b/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "320" + - "319" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:11 GMT X-Amz-Id-2: - - txg332af5357b804631aa7f-0067586a9c + - txg4a1332a85e1944a09899-00685ead4b X-Amz-Request-Id: - - txg332af5357b804631aa7f-0067586a9c + - txg4a1332a85e1944a09899-00685ead4b status: 404 Not Found code: 404 - duration: 14.632583ms - - id: 33 + duration: 20.61575ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:11 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef85ece4-36bb-40f5-a42b-66e3a6b63900 + status: 200 OK + code: 200 + duration: 136.992125ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1724,7 +1922,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1733,16 +1931,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 7aa6a9e3-373f-4e35-97d9-85e96542819a + - 7bec4dd5-2462-4108-aaf5-638ef45db1e9 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144011Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: GET response: proto: HTTP/2.0 @@ -1750,26 +1948,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 277 + content_length: 276 uncompressed: false body: |- - tf-tests-scw-object-acl-grantee-65955737269314315761000false + tf-tests-scw-object-acl-grantee-8865093758949989721000false headers: Content-Length: - - "277" + - "276" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:11 GMT X-Amz-Id-2: - - txg86995068d43642be8ef9-0067586a9c + - txgafb46a06d8884a769820-00685ead4b X-Amz-Request-Id: - - txg86995068d43642be8ef9-0067586a9c + - txgafb46a06d8884a769820-00685ead4b status: 200 OK code: 200 - duration: 36.67925ms - - id: 34 + duration: 418.288958ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1777,7 +1975,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1786,16 +1984,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - a00e8633-e49b-4c43-a010-b5734828198e + - 5bacb52e-471d-4212-8660-1ec2c7555413 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?tagging= + - 20250627T144011Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?tagging= method: GET response: proto: HTTP/2.0 @@ -1803,24 +2001,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 341 + content_length: 339 uncompressed: false - body: NoSuchTagSetThe TagSet does not existtxg386e4ba2f31947eb9484-0067586a9ctxg386e4ba2f31947eb9484-0067586a9c/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchTagSetThe TagSet does not existtxg99dacffd449149f9b48c-00685ead4btxg99dacffd449149f9b48c-00685ead4b/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "341" + - "339" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:11 GMT X-Amz-Id-2: - - txg386e4ba2f31947eb9484-0067586a9c + - txg99dacffd449149f9b48c-00685ead4b X-Amz-Request-Id: - - txg386e4ba2f31947eb9484-0067586a9c + - txg99dacffd449149f9b48c-00685ead4b status: 404 Not Found code: 404 - duration: 44.844167ms - - id: 35 + duration: 178.684833ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1828,7 +2026,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1837,16 +2035,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bfc9e90b-eada-4b1d-a8a5-9548d31f2c99 + - 176fc3a5-1ae0-4656-971a-698bc0b5d88b Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?cors= + - 20250627T144011Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?cors= method: GET response: proto: HTTP/2.0 @@ -1854,24 +2052,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 287 uncompressed: false - body: NoSuchCORSConfigurationThe CORS configuration does not existtxg343af012762c4b29bbe4-0067586a9ctxg343af012762c4b29bbe4-0067586a9c/tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchCORSConfigurationThe CORS configuration does not existtxg29bb06fd7ebf4be6bd8e-00685ead4btxg29bb06fd7ebf4be6bd8e-00685ead4b/tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "288" + - "287" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:11 GMT X-Amz-Id-2: - - txg343af012762c4b29bbe4-0067586a9c + - txg29bb06fd7ebf4be6bd8e-00685ead4b X-Amz-Request-Id: - - txg343af012762c4b29bbe4-0067586a9c + - txg29bb06fd7ebf4be6bd8e-00685ead4b status: 404 Not Found code: 404 - duration: 43.071625ms - - id: 36 + duration: 132.3355ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1879,7 +2077,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1888,16 +2086,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 1071c9a7-83b3-4a93-98ad-588f55db84c0 + - 13563aab-0f02-4d0f-9ed7-b10a32128be4 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?versioning= + - 20250627T144012Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?versioning= method: GET response: proto: HTTP/2.0 @@ -1905,26 +2103,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 155 + content_length: 107 uncompressed: false body: |- - + headers: Content-Length: - - "155" + - "107" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:12 GMT X-Amz-Id-2: - - txg65c698b01ce34e018e5a-0067586a9c + - txg4561a8760501417193e3-00685ead4c X-Amz-Request-Id: - - txg65c698b01ce34e018e5a-0067586a9c + - txg4561a8760501417193e3-00685ead4c status: 200 OK code: 200 - duration: 23.7285ms - - id: 37 + duration: 164.549875ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1932,7 +2130,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1941,16 +2139,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e6c251bf-fa04-4669-a13f-cb3b64cb68bd + - 9c146f8a-6530-4138-9668-a2ff4eaccbe8 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?lifecycle= + - 20250627T144012Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?lifecycle= method: GET response: proto: HTTP/2.0 @@ -1958,24 +2156,24 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 374 + content_length: 372 uncompressed: false - body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxgbc31a658a88b4b33a86d-0067586a9ctxgbc31a658a88b4b33a86d-0067586a9c/tf-tests-scw-object-acl-grantee-6595573726931431576tf-tests-scw-object-acl-grantee-6595573726931431576 + body: NoSuchLifecycleConfigurationThe lifecycle configuration does not existtxg68b9271d7b05451c81af-00685ead4ctxg68b9271d7b05451c81af-00685ead4c/tf-tests-scw-object-acl-grantee-886509375894998972tf-tests-scw-object-acl-grantee-886509375894998972 headers: Content-Length: - - "374" + - "372" Content-Type: - application/xml Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:12 GMT X-Amz-Id-2: - - txgbc31a658a88b4b33a86d-0067586a9c + - txg68b9271d7b05451c81af-00685ead4c X-Amz-Request-Id: - - txgbc31a658a88b4b33a86d-0067586a9c + - txg68b9271d7b05451c81af-00685ead4c status: 404 Not Found code: 404 - duration: 41.403ms - - id: 38 + duration: 128.702125ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -1983,7 +2181,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -1992,16 +2190,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - 2646be6a-bea9-4c86-8b6e-c11d9f13f8a2 + - 853c3fd2-a420-4724-a4b7-b28db673e763 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162148Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144012Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -2009,26 +2207,124 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1753 uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b5950ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD_ACP105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE84d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e084d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e0FULL_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - - "1355" + - "1753" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:48 GMT + - Fri, 27 Jun 2025 14:40:12 GMT X-Amz-Id-2: - - txg504468e4b5544dffbf37-0067586a9c + - txg78c925fc3b034127abb1-00685ead4c X-Amz-Request-Id: - - txg504468e4b5544dffbf37-0067586a9c + - txg78c925fc3b034127abb1-00685ead4c status: 200 OK code: 200 - duration: 44.086917ms - - id: 39 + duration: 21.98725ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2935ba78-b2e3-4eb5-b7e8-4e4b1914c0a5 + status: 200 OK + code: 200 + duration: 127.546667ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.3; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/iam/v1alpha1/users?order_by=created_at_asc&organization_id=105bdce1-64c0-48ab-899d-868455867ecf&page=1&type=unknown_type + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 4264 + uncompressed: false + body: '{"total_count":8,"users":[{"account_root_user_id":"afa9fc32-9d43-417d-9ca0-a4ed6edf27a1","created_at":"2022-03-29T11:44:54.791271Z","deletable":false,"email":"hashicorp@scaleway.com","first_name":"","id":"ef29ce05-3f2b-4fa0-a259-d76110850d57","last_login_at":"2024-06-18T21:39:22.182798Z","last_name":"","locale":"fr_FR","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"owner","updated_at":"2025-03-05T14:31:18.088783Z","username":"hashicorp@scaleway.com"},{"account_root_user_id":"","created_at":"2023-01-23T15:16:01.748877Z","deletable":true,"email":"developer-tools-team@scaleway.com","first_name":"Developper Tools","id":"84d20ae1-9650-419a-ab74-7ab09b6262e0","last_login_at":null,"last_name":"TEAM","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"developer-tools-team@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-17T13:14:30.940996Z","deletable":true,"email":"jremy@scaleway.com","first_name":"Jonathan","id":"ee474852-1f90-4cc1-bad0-4a17998c51e7","last_login_at":"2025-06-26T08:43:45.804795Z","last_name":"REMY","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-26T08:43:45.792720Z","username":"jremy@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:30:48.009812Z","deletable":true,"email":"rleone@scaleway.com","first_name":"Rémy","id":"88b4dde1-f3d4-478a-a281-784d53399a30","last_login_at":"2025-06-25T13:15:16.018041Z","last_name":"LEONE","locale":"fr_FR","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33667564022","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-25T13:15:16.013742Z","username":"rleone@scaleway.com"},{"account_root_user_id":"","created_at":"2024-01-18T09:33:00.754759Z","deletable":true,"email":"lmasson@scaleway.com","first_name":"Laure","id":"d8e03283-0413-4305-850a-4cbfc4caaba8","last_login_at":"2025-06-19T06:58:32.896858Z","last_name":"MASSON","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33646316333","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmasson@scaleway.com"},{"account_root_user_id":"","created_at":"2024-04-10T13:53:57.102549Z","deletable":true,"email":"yfodil@scaleway.com","first_name":"Yacine","id":"a893a7b8-07d0-4258-b70b-b4b90d6c254d","last_login_at":"2025-06-24T06:45:32.742236Z","last_name":"FODIL","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-24T06:45:32.728353Z","username":"yfodil@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.372836Z","deletable":true,"email":"lmarabese@scaleway.com","first_name":"Leïla","id":"29c74dc1-87e7-4c49-91a1-0ad5540ecdd7","last_login_at":"2025-06-11T13:36:30.755478Z","last_name":"MARABESE","locale":"en_US","locked":false,"mfa":true,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"+33648006380","status":"activated","tags":[],"two_factor_enabled":true,"type":"member","updated_at":"2025-06-23T13:16:39.476255Z","username":"lmarabese@scaleway.com"},{"account_root_user_id":"","created_at":"2025-04-01T14:29:15.375406Z","deletable":true,"email":"gnoale@scaleway.com","first_name":"Guillaume","id":"e8acdc71-e1ee-4d39-b597-0cf4a3226f29","last_login_at":"2025-06-27T13:45:42.084227Z","last_name":"NOALE","locale":"en_US","locked":false,"mfa":false,"organization_id":"105bdce1-64c0-48ab-899d-868455867ecf","phone_number":"","status":"activated","tags":[],"two_factor_enabled":false,"type":"member","updated_at":"2025-06-27T13:45:42.061649Z","username":"gnoale@scaleway.com"}]}' + headers: + Content-Length: + - "4264" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Fri, 27 Jun 2025 14:40:12 GMT + Server: + - Scaleway API Gateway (fr-par-1;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 49e3d680-95bb-4470-a942-5d45e5847656 + status: 200 OK + code: 200 + duration: 157.880834ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2036,7 +2332,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -2045,16 +2341,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - f20d3ed3-dc80-4c64-8a9e-54f3e6368507 + - 4581f637-989f-463d-a954-bace91138df7 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162149Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144012Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: GET response: proto: HTTP/2.0 @@ -2062,26 +2358,26 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1355 + content_length: 1753 uncompressed: false body: |- - 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE50ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b5950ab77d5-56bd-4981-a118-4e0fa5309b59:50ab77d5-56bd-4981-a118-4e0fa5309b59FULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL + 105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfhttp://acs.amazonaws.com/groups/global/AuthenticatedUsersREAD_ACP105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfFULL_CONTROL105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecf105bdce1-64c0-48ab-899d-868455867ecf:105bdce1-64c0-48ab-899d-868455867ecfWRITE84d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e084d20ae1-9650-419a-ab74-7ab09b6262e0:84d20ae1-9650-419a-ab74-7ab09b6262e0FULL_CONTROLhttp://acs.amazonaws.com/groups/global/AllUsersREAD headers: Content-Length: - - "1355" + - "1753" Content-Type: - text/xml; charset=utf-8 Date: - - Tue, 10 Dec 2024 16:21:49 GMT + - Fri, 27 Jun 2025 14:40:12 GMT X-Amz-Id-2: - - txg1fad8531ad8d458a907e-0067586a9d + - txge051c7cca6ee40bb9e89-00685ead4c X-Amz-Request-Id: - - txg1fad8531ad8d458a907e-0067586a9d + - txge051c7cca6ee40bb9e89-00685ead4c status: 200 OK code: 200 - duration: 14.477209ms - - id: 40 + duration: 21.61625ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2089,7 +2385,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -2098,18 +2394,20 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - bb73920e-e17a-43ca-989f-7c266f60681e + - 129b172d-c320-41a4-8181-1caea3f8b1cc Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,Z,e X-Amz-Acl: - private + X-Amz-Checksum-Crc32: + - AAAAAA== X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162150Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/?acl= + - 20250627T144013Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/?acl= method: PUT response: proto: HTTP/2.0 @@ -2124,15 +2422,15 @@ interactions: Content-Length: - "0" Date: - - Tue, 10 Dec 2024 16:21:50 GMT + - Fri, 27 Jun 2025 14:40:13 GMT X-Amz-Id-2: - - txga0813f87c93f45ca9935-0067586a9e + - txgc9885550373e476f8d90-00685ead4d X-Amz-Request-Id: - - txga0813f87c93f45ca9935-0067586a9e + - txgc9885550373e476f8d90-00685ead4d status: 200 OK code: 200 - duration: 55.798458ms - - id: 41 + duration: 248.932875ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2140,7 +2438,7 @@ interactions: content_length: 0 transfer_encoding: [] trailer: {} - host: tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud + host: tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud remote_addr: "" request_uri: "" body: "" @@ -2149,16 +2447,16 @@ interactions: Accept-Encoding: - identity Amz-Sdk-Invocation-Id: - - e9112b54-9577-49c6-b569-59eff89a51a3 + - 4d7d7877-2286-4c0d-8dc3-8bdee49073c2 Amz-Sdk-Request: - attempt=1; max=3 User-Agent: - - m/E aws-sdk-go-v2/1.32.3 os/macos lang/go#1.23.2 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.66.2 + - aws-sdk-go-v2/1.36.3 ua/2.1 os/macos lang/go#1.24.3 md/GOOS#darwin md/GOARCH#arm64 api/s3#1.80.0 m/E,e X-Amz-Content-Sha256: - e3b0c44298fc1c149afbf4c8996fb92427ae41e4649b934ca495991b7852b855 X-Amz-Date: - - 20241210T162150Z - url: https://tf-tests-scw-object-acl-grantee-6595573726931431576.s3.nl-ams.scw.cloud/ + - 20250627T144013Z + url: https://tf-tests-scw-object-acl-grantee-886509375894998972.s3.nl-ams.scw.cloud/ method: DELETE response: proto: HTTP/2.0 @@ -2171,11 +2469,11 @@ interactions: body: "" headers: Date: - - Tue, 10 Dec 2024 16:21:50 GMT + - Fri, 27 Jun 2025 14:40:13 GMT X-Amz-Id-2: - - txg51de5fb41f094c119218-0067586a9e + - txg65a276346459406b9dd6-00685ead4d X-Amz-Request-Id: - - txg51de5fb41f094c119218-0067586a9e + - txg65a276346459406b9dd6-00685ead4d status: 204 No Content code: 204 - duration: 101.34675ms + duration: 465.537833ms From 810fb0385c2a8ad2d3786d981e09cc8b892dfe65 Mon Sep 17 00:00:00 2001 From: Yacine Fodil <105779815+yfodil@users.noreply.github.com> Date: Mon, 30 Jun 2025 15:51:44 +0200 Subject: [PATCH 6/8] feat(autoscaling): add support for v1alpha1 (#3159) MIME-Version: 1.0 Content-Type: text/plain; charset=UTF-8 Content-Transfer-Encoding: 8bit * feat(autoscaling): add support for v1alpha1 * lint * lint * Fix format --------- Co-authored-by: Rémy Léone --- .github/workflows/nightly.yml | 1 + docs/resources/autoscaling_instance_group.md | 177 + docs/resources/autoscaling_instance_policy.md | 87 + .../autoscaling_instance_template.md | 72 + internal/locality/regional/ids.go | 26 +- internal/locality/zonal/ids.go | 14 + internal/provider/provider.go | 4 + internal/services/applesilicon/types.go | 2 +- .../autoscaling/helpers_autoscaling.go | 33 + .../services/autoscaling/instance_group.go | 265 ++ .../autoscaling/instance_group_test.go | 169 + .../services/autoscaling/instance_policy.go | 238 ++ .../autoscaling/instance_policy_test.go | 185 + .../services/autoscaling/instance_template.go | 378 ++ .../autoscaling/instance_template_test.go | 181 + internal/services/autoscaling/sweep_test.go | 16 + .../instance-group-basic.cassette.yaml | 3586 ++++++++++++++++ .../instance-policy-basic.cassette.yaml | 3782 +++++++++++++++++ .../instance-template-basic.cassette.yaml | 1081 +++++ ...nce-template-private-network.cassette.yaml | 1473 +++++++ .../services/autoscaling/testfuncs/sweep.go | 117 + internal/services/autoscaling/types.go | 274 ++ internal/services/baremetal/types.go | 2 +- .../services/instance/helpers_instance.go | 47 + internal/services/lb/types.go | 2 +- 25 files changed, 12196 insertions(+), 16 deletions(-) create mode 100644 docs/resources/autoscaling_instance_group.md create mode 100644 docs/resources/autoscaling_instance_policy.md create mode 100644 docs/resources/autoscaling_instance_template.md create mode 100644 internal/services/autoscaling/helpers_autoscaling.go create mode 100644 internal/services/autoscaling/instance_group.go create mode 100644 internal/services/autoscaling/instance_group_test.go create mode 100644 internal/services/autoscaling/instance_policy.go create mode 100644 internal/services/autoscaling/instance_policy_test.go create mode 100644 internal/services/autoscaling/instance_template.go create mode 100644 internal/services/autoscaling/instance_template_test.go create mode 100644 internal/services/autoscaling/sweep_test.go create mode 100644 internal/services/autoscaling/testdata/instance-group-basic.cassette.yaml create mode 100644 internal/services/autoscaling/testdata/instance-policy-basic.cassette.yaml create mode 100644 internal/services/autoscaling/testdata/instance-template-basic.cassette.yaml create mode 100644 internal/services/autoscaling/testdata/instance-template-private-network.cassette.yaml create mode 100644 internal/services/autoscaling/testfuncs/sweep.go create mode 100644 internal/services/autoscaling/types.go diff --git a/.github/workflows/nightly.yml b/.github/workflows/nightly.yml index 338207ee98..24ba65f029 100644 --- a/.github/workflows/nightly.yml +++ b/.github/workflows/nightly.yml @@ -13,6 +13,7 @@ jobs: products: - account - applesilicon + - autoscaling - az - baremetal - billing diff --git a/docs/resources/autoscaling_instance_group.md b/docs/resources/autoscaling_instance_group.md new file mode 100644 index 0000000000..b80ef5f5e2 --- /dev/null +++ b/docs/resources/autoscaling_instance_group.md @@ -0,0 +1,177 @@ +--- +subcategory: "Autoscaling" +page_title: "Scaleway: scaleway_autoscaling_instance_group" +--- + +# Resource: scaleway_autoscaling_instance_group + +Books and manages Autoscaling Instance groups. + +## Example Usage + +### Basic + +```terraform +resource "scaleway_autoscaling_instance_group" "main" { + name = "asg-group" + template_id = scaleway_autoscaling_instance_template.main.id + tags = ["terraform-test", "instance-group"] + capacity { + max_replicas = 5 + min_replicas = 1 + cooldown_delay = "300" + } + load_balancer { + id = scaleway_lb.main.id + backend_ids = [scaleway_lb_backend.main.id] + private_network_id = scaleway_vpc_private_network.main.id + } +} +``` + +### With template and policies + +```terraform +resource "scaleway_vpc" "main" { + name = "TestAccAutoscalingVPC" +} + +resource "scaleway_vpc_private_network" "main" { + name = "TestAccAutoscalingVPC" + vpc_id = scaleway_vpc.main.id +} + +resource "scaleway_block_volume" "main" { + iops = 5000 + size_in_gb = 10 +} + +resource "scaleway_block_snapshot" "main" { + name = "test-ds-block-snapshot-basic" + volume_id = scaleway_block_volume.main.id +} + +resource "scaleway_lb_ip" "main" {} +resource "scaleway_lb" "main" { + ip_id = scaleway_lb_ip.main.id + name = "test-lb" + type = "lb-s" + private_network { + private_network_id = scaleway_vpc_private_network.main.id + } +} + +resource "scaleway_lb_backend" "main" { + lb_id = scaleway_lb.main.id + forward_protocol = "tcp" + forward_port = 80 + proxy_protocol = "none" +} + +resource "scaleway_autoscaling_instance_template" "main" { + name = "autoscaling-instance-template-basic" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "basic"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + private_network_ids = [scaleway_vpc_private_network.main.id] +} + +resource "scaleway_autoscaling_instance_group" "main" { + name = "autoscaling-instance-group-basic" + template_id = scaleway_autoscaling_instance_template.main.id + tags = ["terraform-test", "instance-group"] + capacity { + max_replicas = 5 + min_replicas = 1 + cooldown_delay = "300" + } + load_balancer { + id = scaleway_lb.main.id + backend_ids = [scaleway_lb_backend.main.id] + private_network_id = scaleway_vpc_private_network.main.id + } + delete_servers_on_destroy = true +} + +resource "scaleway_autoscaling_instance_policy" "up" { + instance_group_id = scaleway_autoscaling_instance_group.main.id + name = "scale-up-if-cpu-high" + action = "scale_up" + type = "flat_count" + value = 1 + priority = 1 + + metric { + name = "cpu scale up" + managed_metric = "managed_metric_instance_cpu" + operator = "operator_greater_than" + aggregate = "aggregate_average" + sampling_range_min = 5 + threshold = 70 + } +} + +resource "scaleway_autoscaling_instance_policy" "down" { + instance_group_id = scaleway_autoscaling_instance_group.main.id + name = "scale-down-if-cpu-low" + action = "scale_down" + type = "flat_count" + value = 1 + priority = 2 + + metric { + name = "cpu scale down" + managed_metric = "managed_metric_instance_cpu" + operator = "operator_less_than" + aggregate = "aggregate_average" + sampling_range_min = 5 + threshold = 40 + } +} +``` + +## Argument Reference + +The following arguments are supported: + +- `template_id` - (Required) The ID of the Instance template to attach to the Instance group. +- `tags` - (Optional) The tags associated with the Instance group. +- `name` - (Optional) The Instance group name. +- `capacity` - (Optional) The specification of the minimum and maximum replicas for the Instance group, and the cooldown interval between two scaling events. + - `max_replicas` - The maximum count of Instances for the Instance group. + - `min_replicas` - The minimum count of Instances for the Instance group. + - `cooldown_delay` - Time (in seconds) after a scaling action during which requests to carry out a new scaling action will be denied. +- `load_balancer` - (Optional) The specification of the Load Balancer to link to the Instance group. + - `id` - The ID of the Load Balancer. + - `backend_ids` - The Load Balancer backend IDs. + - `private_network_id` - The ID of the Private Network attached to the Load Balancer. +- `delete_servers_on_destroy` - (Optional) Whether to delete all instances in this group when the group is destroyed. Set to `true` to tear them down, `false` (the default) leaves them running. +- `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the Instance group exists. +- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the Instance group is associated with. + +## Attributes Reference + +In addition to all arguments above, the following attributes are exported: + +- `id` - The ID of the Instance group. +- `created_at` - Date and time of Instance group's creation (RFC 3339 format). +- `updated_at` - Date and time of Instance group's last update (RFC 3339 format). + +~> **Important:** Autoscaling Instance group IDs are [zonal](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111` + +## Import + +Autoscaling Instance groups can be imported using `{zone}/{id}`, e.g. + +```bash +terraform import scaleway_autoscaling_instance_group.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` diff --git a/docs/resources/autoscaling_instance_policy.md b/docs/resources/autoscaling_instance_policy.md new file mode 100644 index 0000000000..b8b87906fc --- /dev/null +++ b/docs/resources/autoscaling_instance_policy.md @@ -0,0 +1,87 @@ +--- +subcategory: "Autoscaling" +page_title: "Scaleway: scaleway_autoscaling_instance_policy" +--- + +# Resource: scaleway_autoscaling_instance_policy + +Books and manages Autoscaling Instance policies. + +## Example Usage + +### Basic + +```terraform +resource "scaleway_autoscaling_instance_policy" "up" { + instance_group_id = scaleway_autoscaling_instance_group.main.id + name = "scale-up-if-cpu-high" + action = "scale_up" + type = "flat_count" + value = 1 + priority = 1 + + metric { + name = "cpu scale up" + managed_metric = "managed_metric_instance_cpu" + operator = "operator_greater_than" + aggregate = "aggregate_average" + sampling_range_min = 5 + threshold = 70 + } +} + +resource "scaleway_autoscaling_instance_policy" "down" { + instance_group_id = scaleway_autoscaling_instance_group.main.id + name = "scale-down-if-cpu-low" + action = "scale_down" + type = "flat_count" + value = 1 + priority = 2 + + metric { + name = "cpu scale down" + managed_metric = "managed_metric_instance_cpu" + operator = "operator_less_than" + aggregate = "aggregate_average" + sampling_range_min = 5 + threshold = 40 + } +} +``` + +## Argument Reference + +The following arguments are supported: + +- `instance_group_id` - (Required) The ID of the Instance group related to this policy. +- `name` - (Optional) The Instance policy name. +- `action` - (Required) The action to execute when the metric-based condition is met. +- `type` - (Required) How to use the number defined in `value` when determining by how many Instances to scale up/down. +- `value` - (Required) The value representing the magnitude of the scaling action to take for the Instance group. Depending on the `type` parameter, this number could represent a total number of Instances in the group, a number of Instances to add, or a percentage to scale the group by. +- `priority` - (Required) The priority of this policy compared to all other scaling policies. This determines the processing order. The lower the number, the higher the priority. +- `metric` - (Optional) Cockpit metric to use when determining whether to trigger a scale up/down action. + - `name` - Name or description of the metric policy. + - `operator` - Operator used when comparing the threshold value of the chosen `metric` to the actual sampled and aggregated value. + - `aggregate` - How the values sampled for the `metric` should be aggregated. + - `managed_metric` - The managed metric to use for this policy. These are available by default in Cockpit without any configuration or `node_exporter`. The chosen metric forms the basis of the condition that will be checked to determine whether a scaling action should be triggered. + - `cockpit_metric_name` - The custom metric to use for this policy. This must be stored in Scaleway Cockpit. The metric forms the basis of the condition that will be checked to determine whether a scaling action should be triggered + - `sampling_range_min` - The Interval of time, in minutes, during which metric is sampled. + - `threshold` - The threshold value to measure the aggregated sampled `metric` value against. Combined with the `operator` field, determines whether a scaling action should be triggered. +- `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the Instance policy exists. +- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the Instance policy is associated with. + +## Attributes Reference + +In addition to all arguments above, the following attributes are exported: + +- `id` - The ID of the Instance policy. + +~> **Important:** Autoscaling policies IDs are [zonal](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111` + +## Import + +Autoscaling instance policies can be imported using `{zone}/{id}`, e.g. + +```bash +terraform import scaleway_autoscaling_instance_policy.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` diff --git a/docs/resources/autoscaling_instance_template.md b/docs/resources/autoscaling_instance_template.md new file mode 100644 index 0000000000..2b6939f9c3 --- /dev/null +++ b/docs/resources/autoscaling_instance_template.md @@ -0,0 +1,72 @@ +--- +subcategory: "Autoscaling" +page_title: "Scaleway: scaleway_autoscaling_instance_template" +--- + +# Resource: scaleway_autoscaling_instance_template + +Books and manages Autoscaling Instance templates. + +## Example Usage + +### Basic + +```terraform +resource "scaleway_autoscaling_instance_template" "main" { + name = "asg-template" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "basic"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + private_network_ids = [scaleway_vpc_private_network.main.id] +} +``` + +## Argument Reference + +The following arguments are supported: + +- `commercial_type` - (Required) The name of Instance commercial type. +- `tags` - (Optional) The tags associated with the Instance template. +- `name` - (Optional) The Instance group template. +- `image_id` - (Optional) The instance image ID. Can be an ID of a marketplace or personal image. This image must be compatible with `volume` and `commercial_type` template. +- `volumes` - (Required) The template of Instance volume. + - `name` - The name of the volume. + - `perf_iops` - The maximum IO/s expected, according to the different options available in stock (`5000 | 15000`). + - `tags` - The list of tags assigned to the volume. + - `boot` - Force the Instance to boot on this volume. + - `volume_type` - The type of the volume. +- `security_group_id` - (Optional) The instance security group ID. +- `placement_group_id` - (Optional) The instance placement group ID. This is optional, but it is highly recommended to set a preference for Instance location within Availability Zone. +- `public_ips_v4_count` - (Optional) The number of flexible IPv4 addresses to attach to the new Instance. +- `public_ips_v6_count` - (Optional) The number of flexible IPv6 addresses to attach to the new Instance. +- `private_network_ids` - (Optional) The private Network IDs to attach to the new Instance. +- `cloud_init` - (Optional) The instance image ID. Can be an ID of a marketplace or personal image. This image must be compatible with `volume` and `commercial_type` template. +- `zone` - (Defaults to [provider](../index.md#zone) `zone`) The [zone](../guides/regions_and_zones.md#zones) in which the Instance template exists. +- `project_id` - (Defaults to [provider](../index.md#project_id) `project_id`) The ID of the Project the Instance template is associated with. + +## Attributes Reference + +In addition to all arguments above, the following attributes are exported: + +- `id` - The ID of the Instance group. +- `created_at` - Date and time of Instance group's creation (RFC 3339 format). +- `updated_at` - Date and time of Instance group's last update (RFC 3339 format). + +~> **Important:** Autoscaling Instance template IDs are [zonal](../guides/regions_and_zones.md#resource-ids), which means they are of the form `{zone}/{id}`, e.g. `fr-par-1/11111111-1111-1111-1111-111111111111` + +## Import + +Autoscaling Instance templates can be imported using `{zone}/{id}`, e.g. + +```bash +terraform import scaleway_autoscaling_instance_template.main fr-par-1/11111111-1111-1111-1111-111111111111 +``` diff --git a/internal/locality/regional/ids.go b/internal/locality/regional/ids.go index cc180896a7..27e37ec8d6 100644 --- a/internal/locality/regional/ids.go +++ b/internal/locality/regional/ids.go @@ -21,6 +21,19 @@ func NewID(region scw.Region, id string) ID { } } +func NewIDStrings(region scw.Region, ids []string) []string { + if ids == nil { + return nil + } + + flattenedIDs := make([]string, len(ids)) + for i, id := range ids { + flattenedIDs[i] = NewIDString(region, id) + } + + return flattenedIDs +} + func (z ID) String() string { return fmt.Sprintf("%s/%s", z.Region, z.ID) } @@ -68,16 +81,3 @@ func ParseID(regionalID string) (region scw.Region, id string, err error) { return } - -func NewRegionalIDs(region scw.Region, ids []string) []string { - if ids == nil { - return nil - } - - flattenedIDs := make([]string, len(ids)) - for i, id := range ids { - flattenedIDs[i] = NewIDString(region, id) - } - - return flattenedIDs -} diff --git a/internal/locality/zonal/ids.go b/internal/locality/zonal/ids.go index 66cc8c7fdb..eeb54c5f2d 100644 --- a/internal/locality/zonal/ids.go +++ b/internal/locality/zonal/ids.go @@ -45,6 +45,20 @@ func NewIDString(zone scw.Zone, id string) string { return fmt.Sprintf("%s/%s", zone, id) } +// NewIDStrings returns a slice of zonal IDs built from a zone and a list of raw resource IDs. +func NewIDStrings(zone scw.Zone, ids []string) []string { + if ids == nil { + return nil + } + + flattenedIDs := make([]string, len(ids)) + for i, id := range ids { + flattenedIDs[i] = NewIDString(zone, id) + } + + return flattenedIDs +} + // NewNestedIDString constructs a unique identifier based on resource zone, inner and outer IDs func NewNestedIDString(zone scw.Zone, outerID, innerID string) string { return fmt.Sprintf("%s/%s/%s", zone, outerID, innerID) diff --git a/internal/provider/provider.go b/internal/provider/provider.go index c13ffcd749..980d585e2b 100644 --- a/internal/provider/provider.go +++ b/internal/provider/provider.go @@ -13,6 +13,7 @@ import ( "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/applesilicon" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/autoscaling" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/az" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/baremetal" "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/billing" @@ -126,6 +127,9 @@ func Provider(config *Config) plugin.ProviderFunc { "scaleway_account_project": account.ResourceProject(), "scaleway_account_ssh_key": iam.ResourceSSKKey(), "scaleway_apple_silicon_server": applesilicon.ResourceServer(), + "scaleway_autoscaling_instance_group": autoscaling.ResourceInstanceGroup(), + "scaleway_autoscaling_instance_policy": autoscaling.ResourceInstancePolicy(), + "scaleway_autoscaling_instance_template": autoscaling.ResourceInstanceTemplate(), "scaleway_baremetal_server": baremetal.ResourceServer(), "scaleway_block_snapshot": block.ResourceSnapshot(), "scaleway_block_volume": block.ResourceVolume(), diff --git a/internal/services/applesilicon/types.go b/internal/services/applesilicon/types.go index 24e9eec607..d270bceea4 100644 --- a/internal/services/applesilicon/types.go +++ b/internal/services/applesilicon/types.go @@ -42,7 +42,7 @@ func flattenPrivateNetworks(region scw.Region, privateNetworks []*applesilicon.S for _, privateNetwork := range privateNetworks { flattenedPrivateNetworks = append(flattenedPrivateNetworks, map[string]any{ "id": regional.NewIDString(region, privateNetwork.PrivateNetworkID), - "ipam_ip_ids": regional.NewRegionalIDs(region, privateNetwork.IpamIPIDs), + "ipam_ip_ids": regional.NewIDStrings(region, privateNetwork.IpamIPIDs), "vlan": types.FlattenUint32Ptr(privateNetwork.Vlan), "status": privateNetwork.Status, "created_at": types.FlattenTime(privateNetwork.CreatedAt), diff --git a/internal/services/autoscaling/helpers_autoscaling.go b/internal/services/autoscaling/helpers_autoscaling.go new file mode 100644 index 0000000000..f0eae9b544 --- /dev/null +++ b/internal/services/autoscaling/helpers_autoscaling.go @@ -0,0 +1,33 @@ +package autoscaling + +import ( + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" +) + +// NewAPIWithZone returns a new autoscaling API and the zone for a Create request +func NewAPIWithZone(d *schema.ResourceData, m any) (*autoscaling.API, scw.Zone, error) { + autoscalingAPI := autoscaling.NewAPI(meta.ExtractScwClient(m)) + + zone, err := meta.ExtractZone(d, m) + if err != nil { + return nil, "", err + } + + return autoscalingAPI, zone, nil +} + +// NewAPIWithZoneAndID returns a new autoscaling API with zone and ID extracted from the state +func NewAPIWithZoneAndID(m any, zonalID string) (*autoscaling.API, scw.Zone, string, error) { + autoscalingAPI := autoscaling.NewAPI(meta.ExtractScwClient(m)) + + zone, ID, err := zonal.ParseID(zonalID) + if err != nil { + return nil, "", "", err + } + + return autoscalingAPI, zone, ID, nil +} diff --git a/internal/services/autoscaling/instance_group.go b/internal/services/autoscaling/instance_group.go new file mode 100644 index 0000000000..c3a2f04a88 --- /dev/null +++ b/internal/services/autoscaling/instance_group.go @@ -0,0 +1,265 @@ +package autoscaling + +import ( + "context" + _ "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + instanceSDK "github.com/scaleway/scaleway-sdk-go/api/instance/v1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/meta" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/instance" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" +) + +func ResourceInstanceGroup() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceInstanceGroupCreate, + ReadContext: ResourceInstanceGroupRead, + UpdateContext: ResourceInstanceGroupUpdate, + DeleteContext: ResourceInstanceGroupDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "template_id": { + Type: schema.TypeString, + Required: true, + Description: "ID of the Instance template to attach to the Instance group", + DiffSuppressFunc: dsf.Locality, + }, + "name": { + Type: schema.TypeString, + Computed: true, + Optional: true, + Description: "The Instance group name", + }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "The tags associated with the Instance group", + }, + "capacity": { + Type: schema.TypeList, + Optional: true, + Description: "The specification of the minimum and maximum replicas for the Instance group, and the cooldown interval between two scaling events", + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "max_replicas": { + Type: schema.TypeInt, + Optional: true, + Description: "The maximum count of Instances for the Instance group", + }, + "min_replicas": { + Type: schema.TypeInt, + Optional: true, + Description: "The minimum count of Instances for the Instance group", + }, + "cooldown_delay": { + Type: schema.TypeInt, + Optional: true, + Description: "Time (in seconds) after a scaling action during which requests to carry out a new scaling action will be denied", + }, + }, + }, + }, + "load_balancer": { + Type: schema.TypeList, + Optional: true, + Description: "The specification of the Load Balancer to link to the Instance group", + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "id": { + Type: schema.TypeString, + Optional: true, + Description: "The ID of the load balancer", + DiffSuppressFunc: dsf.Locality, + }, + "backend_ids": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + DiffSuppressFunc: dsf.Locality, + }, + Optional: true, + Description: "The Load Balancer backend IDs", + }, + "private_network_id": { + Type: schema.TypeString, + Optional: true, + Description: "The ID of the Private Network attached to the Load Balancer", + DiffSuppressFunc: dsf.Locality, + }, + }, + }, + }, + "delete_servers_on_destroy": { + Type: schema.TypeBool, + Optional: true, + Default: false, + Description: "Whether to delete all instances in this group when the group is destroyed. Set to `true` to tear them down, `false` (the default) leaves them running", + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the creation of the Instance group", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the Instance group", + }, + "zone": zonal.Schema(), + "project_id": account.ProjectIDSchema(), + }, + } +} + +func ResourceInstanceGroupCreate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, err := NewAPIWithZone(d, m) + if err != nil { + return diag.FromErr(err) + } + + req := &autoscaling.CreateInstanceGroupRequest{ + Zone: zone, + ProjectID: d.Get("project_id").(string), + Name: types.ExpandOrGenerateString(d.Get("name").(string), "instance-group"), + Tags: types.ExpandStrings(d.Get("tags")), + TemplateID: locality.ExpandID(d.Get("template_id").(string)), + Capacity: expandInstanceCapacity(d.Get("capacity")), + Loadbalancer: expandInstanceLoadBalancer(d.Get("load_balancer")), + } + + group, err := api.CreateInstanceGroup(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(zonal.NewIDString(zone, group.ID)) + + return ResourceInstanceGroupRead(ctx, d, m) +} + +func ResourceInstanceGroupRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + group, err := api.GetInstanceGroup(&autoscaling.GetInstanceGroupRequest{ + Zone: zone, + InstanceGroupID: ID, + }, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + _ = d.Set("name", group.Name) + _ = d.Set("template_id", zonal.NewIDString(zone, group.InstanceTemplateID)) + _ = d.Set("tags", group.Tags) + _ = d.Set("capacity", flattenInstanceCapacity(group.Capacity)) + _ = d.Set("load_balancer", flattenInstanceLoadBalancer(group.Loadbalancer, zone)) + _ = d.Set("created_at", types.FlattenTime(group.CreatedAt)) + _ = d.Set("updated_at", types.FlattenTime(group.UpdatedAt)) + _ = d.Set("zone", zone) + _ = d.Set("project_id", group.ProjectID) + + return nil +} + +func ResourceInstanceGroupUpdate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + updateRequest := &autoscaling.UpdateInstanceGroupRequest{ + Zone: zone, + InstanceGroupID: ID, + } + + hasChanged := false + + if d.HasChange("name") { + updateRequest.Name = types.ExpandUpdatedStringPtr(d.Get("name")) + hasChanged = true + } + + if d.HasChange("tags") { + updateRequest.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + hasChanged = true + } + + if d.HasChange("capacity") { + updateRequest.Capacity = expandUpdateInstanceCapacity(d.Get("capacity")) + hasChanged = true + } + + if d.HasChange("load_balancer") { + updateRequest.Loadbalancer = expandUpdateInstanceLoadBalancer(d.Get("load_balancer")) + hasChanged = true + } + + if hasChanged { + _, err = api.UpdateInstanceGroup(updateRequest, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + + return ResourceInstanceGroupRead(ctx, d, m) +} + +func ResourceInstanceGroupDelete(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + group, err := api.GetInstanceGroup(&autoscaling.GetInstanceGroupRequest{ + Zone: zone, + InstanceGroupID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + err = api.DeleteInstanceGroup(&autoscaling.DeleteInstanceGroupRequest{ + Zone: zone, + InstanceGroupID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + if d.Get("delete_servers_on_destroy").(bool) { + instanceAPI := instanceSDK.NewAPI(meta.ExtractScwClient(m)) + + err = instance.DeleteASGServers(ctx, instanceAPI, zone, group.ID, d.Timeout(schema.TimeoutDelete)) + if err != nil { + return diag.FromErr(err) + } + } + + return nil +} diff --git a/internal/services/autoscaling/instance_group_test.go b/internal/services/autoscaling/instance_group_test.go new file mode 100644 index 0000000000..5c54d6c4b4 --- /dev/null +++ b/internal/services/autoscaling/instance_group_test.go @@ -0,0 +1,169 @@ +package autoscaling_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + autoscalingSDK "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/autoscaling" +) + +func TestAccInstanceGroup_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckInstanceGroupDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_vpc" "main" { + name = "TestAccASGInstanceGroup" + } + + resource "scaleway_vpc_private_network" "main" { + name = "TestAccASGInstanceGroup" + vpc_id = scaleway_vpc.main.id + } + + resource "scaleway_block_volume" "main" { + iops = 5000 + size_in_gb = 10 + } + + resource "scaleway_block_snapshot" "main" { + name = "test-ds-block-snapshot-basic" + volume_id = scaleway_block_volume.main.id + } + + resource "scaleway_lb_ip" "main" {} + resource "scaleway_lb" "main" { + ip_id = scaleway_lb_ip.main.id + name = "TestAccASGInstanceGroup" + type = "lb-s" + private_network { + private_network_id = scaleway_vpc_private_network.main.id + } + } + + resource "scaleway_lb_backend" "main" { + lb_id = scaleway_lb.main.id + forward_protocol = "tcp" + forward_port = 80 + proxy_protocol = "none" + } + + resource "scaleway_autoscaling_instance_template" "main" { + name = "TestAccASGInstanceGroup" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "instance-template"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + private_network_ids = [scaleway_vpc_private_network.main.id] + } + + resource "scaleway_autoscaling_instance_group" "main" { + name = "TestAccASGInstanceGroup" + template_id = scaleway_autoscaling_instance_template.main.id + tags = ["terraform-test", "instance-group"] + capacity { + max_replicas = 5 + min_replicas = 1 + cooldown_delay = "300" + } + load_balancer { + id = scaleway_lb.main.id + backend_ids = [scaleway_lb_backend.main.id] + private_network_id = scaleway_vpc_private_network.main.id + } + delete_servers_on_destroy = true + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckInstanceGroupExists(tt, "scaleway_autoscaling_instance_group.main"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "name", "TestAccASGInstanceGroup"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_group.main", "template_id", "scaleway_autoscaling_instance_template.main", "id"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_group.main", "load_balancer.0.id", "scaleway_lb.main", "id"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_group.main", "load_balancer.0.backend_ids.0", "scaleway_lb_backend.main", "id"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_group.main", "load_balancer.0.private_network_id", "scaleway_vpc_private_network.main", "id"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "tags.1", "instance-group"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "capacity.0.max_replicas", "5"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "capacity.0.min_replicas", "1"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_group.main", "capacity.0.cooldown_delay", "300"), + resource.TestCheckResourceAttrSet("scaleway_autoscaling_instance_group.main", "created_at"), + resource.TestCheckResourceAttrSet("scaleway_autoscaling_instance_group.main", "updated_at"), + ), + }, + }, + }) +} + +func testAccCheckInstanceGroupExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = api.GetInstanceGroup(&autoscalingSDK.GetInstanceGroupRequest{ + InstanceGroupID: id, + Zone: zone, + }) + if err != nil { + return err + } + + return nil + } +} + +func testAccCheckInstanceGroupDestroy(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_autoscaling_instance_group" { + continue + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + err = api.DeleteInstanceGroup(&autoscalingSDK.DeleteInstanceGroupRequest{ + InstanceGroupID: id, + Zone: zone, + }) + + if err == nil { + return fmt.Errorf("autoscaling instance group (%s) still exists", rs.Primary.ID) + } + + if !httperrors.Is404(err) { + return err + } + } + + return nil + } +} diff --git a/internal/services/autoscaling/instance_policy.go b/internal/services/autoscaling/instance_policy.go new file mode 100644 index 0000000000..8f27142b59 --- /dev/null +++ b/internal/services/autoscaling/instance_policy.go @@ -0,0 +1,238 @@ +package autoscaling + +import ( + "context" + _ "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func ResourceInstancePolicy() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceInstancePolicyCreate, + ReadContext: ResourceInstancePolicyRead, + UpdateContext: ResourceInstancePolicyUpdate, + DeleteContext: ResourceInstancePolicyDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "instance_group_id": { + Type: schema.TypeString, + Required: true, + Description: "ID of the instance group related to this policy", + DiffSuppressFunc: dsf.Locality, + }, + "name": { + Type: schema.TypeString, + Computed: true, + Optional: true, + Description: "The policy name", + }, + "action": { + Type: schema.TypeString, + Required: true, + Description: "Action to execute when the metric-based condition is met", + ValidateDiagFunc: verify.ValidateEnum[autoscaling.InstancePolicyAction](), + }, + "type": { + Type: schema.TypeString, + Required: true, + Description: "How to use the number defined in `value` when determining by how many Instances to scale up/down", + ValidateDiagFunc: verify.ValidateEnum[autoscaling.InstancePolicyType](), + }, + "value": { + Type: schema.TypeInt, + Required: true, + Description: "Value representing the magnitude of the scaling action to take for the Instance group. Depending on the `type` parameter, " + + "this number could represent a total number of Instances in the group, a number of Instances to add, or a percentage to scale the group by", + }, + "priority": { + Type: schema.TypeInt, + Required: true, + Description: "Priority of this policy compared to all other scaling policies. This determines the processing order. The lower the number, the higher the priority", + }, + "metric": { + Type: schema.TypeList, + Optional: true, + Description: "Cockpit metric to use when determining whether to trigger a scale up/down action", + Computed: true, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Required: true, + Description: "Name or description of the metric policy", + }, + "operator": { + Type: schema.TypeString, + Required: true, + Description: "Operator used when comparing the threshold value of the chosen `metric` to the actual sampled and aggregated value", + }, + "aggregate": { + Type: schema.TypeString, + Required: true, + Description: "How the values sampled for the `metric` should be aggregated", + }, + "managed_metric": { + Type: schema.TypeString, + Optional: true, + Description: "Managed metric to use for this policy. These are available by default in Cockpit without any configuration or `node_exporter`. " + + "The chosen metric forms the basis of the condition that will be checked to determine whether a scaling action should be triggered", + }, + "cockpit_metric_name": { + Type: schema.TypeString, + Optional: true, + Description: "Custom metric to use for this policy. This must be stored in Scaleway Cockpit. " + + "The metric forms the basis of the condition that will be checked to determine whether a scaling action should be triggered", + }, + "sampling_range_min": { + Type: schema.TypeInt, + Optional: true, + Description: "Interval of time, in minutes, during which metric is sampled", + }, + "threshold": { + Type: schema.TypeInt, + Optional: true, + Description: "Threshold value to measure the aggregated sampled `metric` value against. Combined with the `operator` field, determines whether a scaling action should be triggered", + }, + }, + }, + }, + "zone": zonal.Schema(), + "project_id": account.ProjectIDSchema(), + }, + } +} + +func ResourceInstancePolicyCreate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, err := NewAPIWithZone(d, m) + if err != nil { + return diag.FromErr(err) + } + + req := &autoscaling.CreateInstancePolicyRequest{ + Zone: zone, + InstanceGroupID: locality.ExpandID(d.Get("instance_group_id").(string)), + Name: types.ExpandOrGenerateString(d.Get("name").(string), "instance-policy"), + Action: autoscaling.InstancePolicyAction(d.Get("action").(string)), + Type: autoscaling.InstancePolicyType(d.Get("type").(string)), + Value: uint32(d.Get("value").(int)), + Priority: uint32(d.Get("priority").(int)), + Metric: expandPolicyMetric(d.Get("metric").([]any)), + } + + policy, err := api.CreateInstancePolicy(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(zonal.NewIDString(zone, policy.ID)) + + return ResourceInstancePolicyRead(ctx, d, m) +} + +func ResourceInstancePolicyRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + policy, err := api.GetInstancePolicy(&autoscaling.GetInstancePolicyRequest{ + Zone: zone, + PolicyID: ID, + }, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + _ = d.Set("name", policy.Name) + _ = d.Set("action", policy.Action.String()) + _ = d.Set("type", policy.Type.String()) + _ = d.Set("value", int(policy.Value)) + _ = d.Set("priority", int(policy.Priority)) + _ = d.Set("metric", flattenPolicyMetric(policy.Metric)) + _ = d.Set("instance_group_id", zonal.NewIDString(zone, policy.InstanceGroupID)) + _ = d.Set("zone", zone) + + return nil +} + +func ResourceInstancePolicyUpdate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + updateRequest := &autoscaling.UpdateInstancePolicyRequest{ + Zone: zone, + PolicyID: ID, + Action: autoscaling.InstancePolicyAction(d.Get("action").(string)), + Type: autoscaling.InstancePolicyType(d.Get("type").(string)), + } + + hasChanged := false + + if d.HasChange("name") { + updateRequest.Name = types.ExpandUpdatedStringPtr(d.Get("name")) + hasChanged = true + } + + if d.HasChange("metric") { + updateRequest.Metric = expandUpdatePolicyMetric(d.Get("metric")) + hasChanged = true + } + + if d.HasChange("value") { + updateRequest.Value = types.ExpandUint32Ptr(d.Get("value")) + hasChanged = true + } + + if d.HasChange("priority") { + updateRequest.Priority = types.ExpandUint32Ptr(d.Get("priority")) + hasChanged = true + } + + if hasChanged { + _, err = api.UpdateInstancePolicy(updateRequest, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + + return ResourceInstancePolicyRead(ctx, d, m) +} + +func ResourceInstancePolicyDelete(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, id, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + err = api.DeleteInstancePolicy(&autoscaling.DeleteInstancePolicyRequest{ + Zone: zone, + PolicyID: id, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} diff --git a/internal/services/autoscaling/instance_policy_test.go b/internal/services/autoscaling/instance_policy_test.go new file mode 100644 index 0000000000..8ee2291ca9 --- /dev/null +++ b/internal/services/autoscaling/instance_policy_test.go @@ -0,0 +1,185 @@ +package autoscaling_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + autoscalingSDK "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/autoscaling" +) + +func TestAccInstancePolicy_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckInstancePolicyDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_vpc" "main" { + name = "TestAccASGInstancePolicy" + } + + resource "scaleway_vpc_private_network" "main" { + name = "TestAccASGInstancePolicy" + vpc_id = scaleway_vpc.main.id + } + + resource "scaleway_block_volume" "main" { + iops = 5000 + size_in_gb = 10 + } + + resource "scaleway_block_snapshot" "main" { + name = "test-ds-block-snapshot-basic" + volume_id = scaleway_block_volume.main.id + } + + resource "scaleway_lb_ip" "main" {} + resource "scaleway_lb" "main" { + ip_id = scaleway_lb_ip.main.id + name = "TestAccASGInstanceTemplatePrivateNetwork" + type = "lb-s" + private_network { + private_network_id = scaleway_vpc_private_network.main.id + } + } + + resource "scaleway_lb_backend" "main" { + lb_id = scaleway_lb.main.id + forward_protocol = "tcp" + forward_port = 80 + proxy_protocol = "none" + } + + resource "scaleway_autoscaling_instance_template" "main" { + name = "TestAccASGInstancePolicy" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "instance-template"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + private_network_ids = [scaleway_vpc_private_network.main.id] + } + + resource "scaleway_autoscaling_instance_group" "main" { + name = "TestAccASGInstancePolicy" + template_id = scaleway_autoscaling_instance_template.main.id + tags = ["terraform-test", "instance-group"] + capacity { + max_replicas = 5 + min_replicas = 1 + cooldown_delay = "300" + } + load_balancer { + id = scaleway_lb.main.id + backend_ids = [scaleway_lb_backend.main.id] + private_network_id = scaleway_vpc_private_network.main.id + } + delete_servers_on_destroy = true + } + + resource "scaleway_autoscaling_instance_policy" "main" { + instance_group_id = scaleway_autoscaling_instance_group.main.id + name = "TestAccASGInstancePolicy" + action = "scale_down" + type = "flat_count" + value = 1 + priority = 2 + metric { + name = "cpu scale down" + managed_metric = "managed_metric_instance_cpu" + operator = "operator_less_than" + aggregate = "aggregate_average" + sampling_range_min = 5 + threshold = 40 + } + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckInstancePolicyExists(tt, "scaleway_autoscaling_instance_policy.main"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_policy.main", "instance_group_id", "scaleway_autoscaling_instance_group.main", "id"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "name", "TestAccASGInstancePolicy"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "action", "scale_down"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "type", "flat_count"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "value", "1"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "priority", "2"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.name", "cpu scale down"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.managed_metric", "managed_metric_instance_cpu"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.operator", "operator_less_than"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.aggregate", "aggregate_average"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.sampling_range_min", "5"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_policy.main", "metric.0.threshold", "40"), + ), + }, + }, + }) +} + +func testAccCheckInstancePolicyExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = api.GetInstancePolicy(&autoscalingSDK.GetInstancePolicyRequest{ + PolicyID: id, + Zone: zone, + }) + if err != nil { + return err + } + + return nil + } +} + +func testAccCheckInstancePolicyDestroy(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_autoscaling_instance_policy" { + continue + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + err = api.DeleteInstancePolicy(&autoscalingSDK.DeleteInstancePolicyRequest{ + PolicyID: id, + Zone: zone, + }) + + if err == nil { + return fmt.Errorf("autoscaling instance policy (%s) still exists", rs.Primary.ID) + } + + if !httperrors.Is404(err) { + return err + } + } + + return nil + } +} diff --git a/internal/services/autoscaling/instance_template.go b/internal/services/autoscaling/instance_template.go new file mode 100644 index 0000000000..eac8648d19 --- /dev/null +++ b/internal/services/autoscaling/instance_template.go @@ -0,0 +1,378 @@ +package autoscaling + +import ( + "context" + _ "time" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/schema" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/dsf" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/account" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/verify" +) + +func ResourceInstanceTemplate() *schema.Resource { + return &schema.Resource{ + CreateContext: ResourceInstanceTemplateCreate, + ReadContext: ResourceInstanceTemplateRead, + UpdateContext: ResourceInstanceTemplateUpdate, + DeleteContext: ResourceInstanceTemplateDelete, + Importer: &schema.ResourceImporter{ + StateContext: schema.ImportStatePassthroughContext, + }, + SchemaVersion: 0, + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Computed: true, + Optional: true, + Description: "The Instance template name", + }, + "commercial_type": { + Type: schema.TypeString, + Required: true, + Description: "Name of Instance commercial type", + }, + "image_id": { + Type: schema.TypeString, + Optional: true, + Description: "Instance image ID. Can be an ID of a marketplace or personal image. This image must be compatible with `volume` and `commercial_type` template", + DiffSuppressFunc: dsf.Locality, + }, + "security_group_id": { + Type: schema.TypeString, + Optional: true, + Description: "Instance security group ID", + DiffSuppressFunc: dsf.Locality, + }, + "placement_group_id": { + Type: schema.TypeString, + Optional: true, + Description: "Instance placement group ID. This is optional, but it is highly recommended to set a preference for Instance location within Availability Zone", + DiffSuppressFunc: dsf.Locality, + }, + "volumes": { + Type: schema.TypeList, + Optional: true, + Description: "The IPv4 subnet associated with the private network", + MinItems: 1, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "name": { + Type: schema.TypeString, + Required: true, + Description: "The name of the volume", + }, + "perf_iops": { + Type: schema.TypeInt, + Optional: true, + Description: "The maximum IO/s expected, according to the different options available in stock (`5000 | 15000`)", + }, + "from_empty": { + Type: schema.TypeList, + Optional: true, + Description: "Volume instance template from empty", + MaxItems: 1, + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "size": { + Type: schema.TypeInt, + Required: true, + Description: "Size in GB of the new empty volume", + }, + }, + }, + }, + "from_snapshot": { + Type: schema.TypeList, + Optional: true, + MaxItems: 1, + Description: "Volume instance template from snapshot", + Elem: &schema.Resource{ + Schema: map[string]*schema.Schema{ + "snapshot_id": { + Type: schema.TypeString, + Required: true, + Description: "ID of the snapshot to clone", + }, + "size": { + Type: schema.TypeInt, + Optional: true, + Description: "Override size (in GB) of the cloned volume", + }, + }, + }, + }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "List of tags assigned to the volume", + }, + "boot": { + Type: schema.TypeBool, + Optional: true, + Description: "Force the Instance to boot on this volume", + }, + "volume_type": { + Type: schema.TypeString, + Required: true, + Description: "Type of the volume", + ValidateDiagFunc: verify.ValidateEnum[autoscaling.VolumeInstanceTemplateVolumeType](), + }, + }, + }, + }, + "tags": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + }, + Optional: true, + Description: "The tags associated with the Instance template", + }, + "private_network_ids": { + Type: schema.TypeList, + Elem: &schema.Schema{ + Type: schema.TypeString, + DiffSuppressFunc: dsf.Locality, + }, + Optional: true, + Description: "Private Network IDs to attach to the new Instance", + }, + "public_ips_v4_count": { + Type: schema.TypeInt, + Optional: true, + Description: "Number of flexible IPv4 addresses to attach to the new Instance", + }, + "public_ips_v6_count": { + Type: schema.TypeInt, + Optional: true, + Description: "Number of flexible IPv6 addresses to attach to the new Instance", + }, + "cloud_init": { + Type: schema.TypeString, + Optional: true, + Description: "Cloud-config to apply to each instance (will be passed in Base64 format)", + }, + "status": { + Type: schema.TypeString, + Description: "The Instance template status", + Computed: true, + }, + "created_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the creation of the Instance template", + }, + "updated_at": { + Type: schema.TypeString, + Computed: true, + Description: "The date and time of the last update of the Instance template", + }, + "zone": zonal.Schema(), + "project_id": account.ProjectIDSchema(), + }, + } +} + +func ResourceInstanceTemplateCreate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, err := NewAPIWithZone(d, m) + if err != nil { + return diag.FromErr(err) + } + + req := &autoscaling.CreateInstanceTemplateRequest{ + Zone: zone, + CommercialType: d.Get("commercial_type").(string), + ImageID: types.ExpandStringPtr(locality.ExpandID(d.Get("image_id"))), + Tags: types.ExpandStrings(d.Get("tags")), + SecurityGroupID: types.ExpandStringPtr(locality.ExpandID(d.Get("security_group_id"))), + PlacementGroupID: types.ExpandStringPtr(locality.ExpandID(d.Get("placement_group_id"))), + PublicIPsV4Count: types.ExpandUint32Ptr(d.Get("public_ips_v4_count")), + PublicIPsV6Count: types.ExpandUint32Ptr(d.Get("public_ips_v6_count")), + ProjectID: d.Get("project_id").(string), + Name: types.ExpandOrGenerateString(d.Get("name").(string), "template"), + PrivateNetworkIDs: locality.ExpandIDs(d.Get("private_network_ids")), + } + + if ci, ok := d.GetOk("cloud_init"); ok { + rawCI := []byte(ci.(string)) + req.CloudInit = &rawCI + } + + volumesList := expandVolumes(d.Get("volumes").([]any)) + + req.Volumes = volumesList + + template, err := api.CreateInstanceTemplate(req, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + d.SetId(zonal.NewIDString(zone, template.ID)) + + return ResourceInstanceTemplateRead(ctx, d, m) +} + +func ResourceInstanceTemplateRead(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + template, err := api.GetInstanceTemplate(&autoscaling.GetInstanceTemplateRequest{ + Zone: zone, + TemplateID: ID, + }, scw.WithContext(ctx)) + if err != nil { + if httperrors.Is404(err) { + d.SetId("") + + return nil + } + + return diag.FromErr(err) + } + + pnRegion, err := zone.Region() + if err != nil { + return diag.FromErr(err) + } + + _ = d.Set("name", template.Name) + _ = d.Set("commercial_type", template.CommercialType) + _ = d.Set("tags", template.Tags) + _ = d.Set("public_ips_v4_count", types.FlattenUint32Ptr(template.PublicIPsV4Count)) + _ = d.Set("public_ips_v6_count", types.FlattenUint32Ptr(template.PublicIPsV6Count)) + _ = d.Set("private_network_ids", regional.NewIDStrings(pnRegion, template.PrivateNetworkIDs)) + _ = d.Set("status", template.Status.String()) + _ = d.Set("created_at", types.FlattenTime(template.CreatedAt)) + _ = d.Set("updated_at", types.FlattenTime(template.UpdatedAt)) + _ = d.Set("zone", zone) + _ = d.Set("project_id", template.ProjectID) + _ = d.Set("volumes", flattenVolumes(zone, template.Volumes)) + + if template.SecurityGroupID != nil { + _ = d.Set("security_group_id", zonal.NewIDString(zone, types.FlattenStringPtr(template.SecurityGroupID).(string))) + } + + if template.PlacementGroupID != nil { + _ = d.Set("placement_group_id", zonal.NewIDString(zone, types.FlattenStringPtr(template.PlacementGroupID).(string))) + } + + if template.ImageID != nil { + _ = d.Set("image_id", zonal.NewIDString(zone, types.FlattenStringPtr(template.ImageID).(string))) + } + + if template.CloudInit != nil { + _ = d.Set("cloud_init", string(*template.CloudInit)) + } + + return nil +} + +func ResourceInstanceTemplateUpdate(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + updateRequest := &autoscaling.UpdateInstanceTemplateRequest{ + Zone: zone, + TemplateID: ID, + } + + hasChanged := false + + if d.HasChange("name") { + updateRequest.Name = types.ExpandUpdatedStringPtr(d.Get("name")) + hasChanged = true + } + + if d.HasChange("commercial_type") { + updateRequest.CommercialType = types.ExpandUpdatedStringPtr(d.Get("commercial_type")) + hasChanged = true + } + + if d.HasChange("image_id") { + updateRequest.ImageID = types.ExpandUpdatedStringPtr(locality.ExpandID(d.Get("image_id"))) + hasChanged = true + } + + if d.HasChange("security_group_id") { + updateRequest.SecurityGroupID = types.ExpandUpdatedStringPtr(locality.ExpandID(d.Get("security_group_id"))) + hasChanged = true + } + + if d.HasChange("placement_group_id") { + updateRequest.PlacementGroupID = types.ExpandUpdatedStringPtr(locality.ExpandID(d.Get("placement_group_id"))) + hasChanged = true + } + + if d.HasChange("public_ips_v4_count") { + updateRequest.PublicIPsV4Count = types.ExpandUint32Ptr(d.Get("public_ips_v4_count")) + hasChanged = true + } + + if d.HasChange("public_ips_v6_count") { + updateRequest.PublicIPsV6Count = types.ExpandUint32Ptr(d.Get("public_ips_v6_count")) + hasChanged = true + } + + if d.HasChange("tags") { + updateRequest.Tags = types.ExpandUpdatedStringsPtr(d.Get("tags")) + hasChanged = true + } + + if d.HasChange("private_network_ids") { + updateRequest.PrivateNetworkIDs = types.ExpandUpdatedStringsPtr(locality.ExpandIDs(d.Get("private_network_ids"))) + hasChanged = true + } + + if d.HasChange("cloud_init") { + rawCI := []byte(d.Get("cloud_init").(string)) + updateRequest.CloudInit = &rawCI + hasChanged = true + } + + if d.HasChange("volumes") { + updateRequest.Volumes = expandVolumes(d.Get("volumes").([]any)) + hasChanged = true + } + + if hasChanged { + _, err = api.UpdateInstanceTemplate(updateRequest, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + } + + return ResourceInstanceTemplateRead(ctx, d, m) +} + +func ResourceInstanceTemplateDelete(ctx context.Context, d *schema.ResourceData, m any) diag.Diagnostics { + api, zone, ID, err := NewAPIWithZoneAndID(m, d.Id()) + if err != nil { + return diag.FromErr(err) + } + + err = api.DeleteInstanceTemplate(&autoscaling.DeleteInstanceTemplateRequest{ + Zone: zone, + TemplateID: ID, + }, scw.WithContext(ctx)) + if err != nil { + return diag.FromErr(err) + } + + return nil +} diff --git a/internal/services/autoscaling/instance_template_test.go b/internal/services/autoscaling/instance_template_test.go new file mode 100644 index 0000000000..a13a3e454e --- /dev/null +++ b/internal/services/autoscaling/instance_template_test.go @@ -0,0 +1,181 @@ +package autoscaling_test + +import ( + "fmt" + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + "github.com/hashicorp/terraform-plugin-sdk/v2/terraform" + autoscalingSDK "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/httperrors" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/autoscaling" +) + +func TestAccInstanceTemplate_Basic(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckInstanceTemplateDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_block_volume" "main" { + iops = 5000 + size_in_gb = 10 + } + + resource "scaleway_block_snapshot" "main" { + name = "test-ds-block-snapshot-basic" + volume_id = scaleway_block_volume.main.id + } + + resource "scaleway_autoscaling_instance_template" "main" { + name = "test-autoscaling-instance-template-basic" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "instance-template"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckInstanceTemplateExists(tt, "scaleway_autoscaling_instance_template.main"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "name", "test-autoscaling-instance-template-basic"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "public_ips_v4_count", "1"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "volumes.0.name", "as-volume"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "volumes.0.volume_type", "sbs"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "volumes.0.boot", "true"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "volumes.0.perf_iops", "5000"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_template.main", "volumes.0.from_snapshot.0.snapshot_id", "scaleway_block_snapshot.main", "id"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "tags.#", "2"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "tags.0", "terraform-test"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "tags.1", "instance-template"), + resource.TestCheckResourceAttrSet("scaleway_autoscaling_instance_template.main", "created_at"), + resource.TestCheckResourceAttrSet("scaleway_autoscaling_instance_template.main", "updated_at"), + ), + }, + }, + }) +} + +func TestAccInstanceTemplate_PrivateNetwork(t *testing.T) { + tt := acctest.NewTestTools(t) + defer tt.Cleanup() + + resource.ParallelTest(t, resource.TestCase{ + PreCheck: func() { acctest.PreCheck(t) }, + ProviderFactories: tt.ProviderFactories, + CheckDestroy: testAccCheckInstanceTemplateDestroy(tt), + Steps: []resource.TestStep{ + { + Config: ` + resource "scaleway_vpc" "main" { + name = "TestAccASGInstanceTemplatePrivateNetwork" + } + + resource "scaleway_vpc_private_network" "main" { + name = "TestAccASGInstanceTemplatePrivateNetwork" + vpc_id = scaleway_vpc.main.id + } + + resource "scaleway_block_volume" "main" { + iops = 5000 + size_in_gb = 10 + } + + resource "scaleway_block_snapshot" "main" { + name = "TestAccASGInstanceTemplatePrivateNetwork" + volume_id = scaleway_block_volume.main.id + } + + resource "scaleway_autoscaling_instance_template" "main" { + name = "TestAccASGInstanceTemplatePrivateNetwork" + commercial_type = "PLAY2-MICRO" + tags = ["terraform-test", "basic"] + volumes { + name = "as-volume" + volume_type = "sbs" + boot = true + from_snapshot { + snapshot_id = scaleway_block_snapshot.main.id + } + perf_iops = 5000 + } + public_ips_v4_count = 1 + private_network_ids = [scaleway_vpc_private_network.main.id] + } + `, + Check: resource.ComposeTestCheckFunc( + testAccCheckInstanceTemplateExists(tt, "scaleway_autoscaling_instance_template.main"), + resource.TestCheckResourceAttr("scaleway_autoscaling_instance_template.main", "private_network_ids.#", "1"), + resource.TestCheckResourceAttrPair("scaleway_autoscaling_instance_template.main", "private_network_ids.0", "scaleway_vpc_private_network.main", "id"), + ), + }, + }, + }) +} + +func testAccCheckInstanceTemplateExists(tt *acctest.TestTools, n string) resource.TestCheckFunc { + return func(state *terraform.State) error { + rs, ok := state.RootModule().Resources[n] + if !ok { + return fmt.Errorf("resource not found: %s", n) + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + _, err = api.GetInstanceTemplate(&autoscalingSDK.GetInstanceTemplateRequest{ + TemplateID: id, + Zone: zone, + }) + if err != nil { + return err + } + + return nil + } +} + +func testAccCheckInstanceTemplateDestroy(tt *acctest.TestTools) resource.TestCheckFunc { + return func(state *terraform.State) error { + for _, rs := range state.RootModule().Resources { + if rs.Type != "scaleway_autoscaling_instance_template" { + continue + } + + api, zone, id, err := autoscaling.NewAPIWithZoneAndID(tt.Meta, rs.Primary.ID) + if err != nil { + return err + } + + err = api.DeleteInstanceTemplate(&autoscalingSDK.DeleteInstanceTemplateRequest{ + TemplateID: id, + Zone: zone, + }) + + if err == nil { + return fmt.Errorf("autoscaling instance template (%s) still exists", rs.Primary.ID) + } + + if !httperrors.Is404(err) { + return err + } + } + + return nil + } +} diff --git a/internal/services/autoscaling/sweep_test.go b/internal/services/autoscaling/sweep_test.go new file mode 100644 index 0000000000..bc47ce74d8 --- /dev/null +++ b/internal/services/autoscaling/sweep_test.go @@ -0,0 +1,16 @@ +package autoscaling_test + +import ( + "testing" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + autoscalingtestfuncs "github.com/scaleway/terraform-provider-scaleway/v2/internal/services/autoscaling/testfuncs" +) + +func init() { + autoscalingtestfuncs.AddTestSweepers() +} + +func TestMain(m *testing.M) { + resource.TestMain(m) +} diff --git a/internal/services/autoscaling/testdata/instance-group-basic.cassette.yaml b/internal/services/autoscaling/testdata/instance-group-basic.cassette.yaml new file mode 100644 index 0000000000..384466ccb2 --- /dev/null +++ b/internal/services/autoscaling/testdata/instance-group-basic.cassette.yaml @@ -0,0 +1,3586 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 119 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstanceGroup","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.765689Z","custom_routes_propagation_enabled":false,"id":"44b91620-a1f9-495e-9c57-38edee07f042","is_default":false,"name":"TestAccASGInstanceGroup","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-06-12T21:17:59.765689Z"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c5b1b975-0874-49aa-a698-2501c5e894d4 + status: 200 OK + code: 200 + duration: 189.677417ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 79 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 294 + uncompressed: false + body: '{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6eba07d1-7e65-49ac-b673-5ad122ef007b + status: 200 OK + code: 200 + duration: 198.759834ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44b91620-a1f9-495e-9c57-38edee07f042 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.765689Z","custom_routes_propagation_enabled":false,"id":"44b91620-a1f9-495e-9c57-38edee07f042","is_default":false,"name":"TestAccASGInstanceGroup","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-06-12T21:17:59.765689Z"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 800a396a-36d7-43e9-90b5-4f7b236b6c74 + status: 200 OK + code: 200 + duration: 41.131708ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b3c7a45f-299e-488a-87e0-b5d4683ca8b9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 294 + uncompressed: false + body: '{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 00bf97b0-421f-4bb3-9a12-bbc0bbe0e9c7 + status: 200 OK + code: 200 + duration: 43.904166ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 149 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-volume-gallant-swirles","perf_iops":5000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","from_empty":{"size":10000000000},"tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d51a729f-cac3-4264-838a-7fe422f481f8 + status: 200 OK + code: 200 + duration: 261.355542ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:17:59 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 524c41d2-d11a-468a-a0e7-f4fe5c44d16e + status: 200 OK + code: 200 + duration: 52.644916ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 159 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1093 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.891310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","name":"TestAccASGInstanceGroup","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:17:59.891310Z","id":"b85b1cb6-d876-45f9-b298-21538be19f11","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"},{"created_at":"2025-06-12T21:17:59.891310Z","id":"d9710eba-31de-40b9-865c-49ef1797b01a","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1018::/64","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}],"tags":[],"updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}' + headers: + Content-Length: + - "1093" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6195eaf0-74de-459a-888a-1ecf6afb8006 + status: 200 OK + code: 200 + duration: 714.333875ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d83d1f33-cc9a-4599-9d0e-73dc9f55c640 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1093 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.891310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","name":"TestAccASGInstanceGroup","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:17:59.891310Z","id":"b85b1cb6-d876-45f9-b298-21538be19f11","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"},{"created_at":"2025-06-12T21:17:59.891310Z","id":"d9710eba-31de-40b9-865c-49ef1797b01a","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1018::/64","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}],"tags":[],"updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}' + headers: + Content-Length: + - "1093" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 878c1470-a06c-4041-a9e7-320e204d3514 + status: 200 OK + code: 200 + duration: 63.807084ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 253 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstanceGroup","description":"","ip_id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 909 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742263643Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:00.742263643Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "909" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:00 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6806d614-99b9-4ef7-a081-96810b74a52f + status: 200 OK + code: 200 + duration: 403.786333ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-12T21:18:01.022710Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-12T21:18:01.031899Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6c6353bf-63cd-4f19-a616-088019e498fe + status: 200 OK + code: 200 + duration: 69.068792ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1b521788-0f3d-412f-b2a4-0b58e3904721 + status: 200 OK + code: 200 + duration: 55.755791ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8beb6689-6927-4d41-b47d-3fd76c33a615 + status: 200 OK + code: 200 + duration: 41.142125ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"volume_id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"test-ds-block-snapshot-basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5fa64cb-ac52-41d6-8a9e-702e4484b18b + status: 200 OK + code: 200 + duration: 321.8325ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f433e036-d1a5-43f1-a6e2-8fbff8f44f7b + status: 200 OK + code: 200 + duration: 163.61275ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4da92501-9baf-4689-a88b-189e3a097f1a + status: 200 OK + code: 200 + duration: 166.60625ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:10 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e980616-8770-4bc8-b827-c994324410ba + status: 200 OK + code: 200 + duration: 316.540541ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 454 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"commercial_type":"PLAY2-MICRO","volumes":{"0":{"name":"as-volume","perf_iops":5000,"from_snapshot":{"size":null,"snapshot_id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc"},"tags":[],"boot":true,"volume_type":"sbs"}},"tags":["terraform-test","instance-template"],"public_ips_v4_count":1,"public_ips_v6_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstanceGroup","private_network_ids":["d83d1f33-cc9a-4599-9d0e-73dc9f55c640"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 679 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:18:11.383614467Z","id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","image_id":null,"name":"TestAccASGInstanceGroup","placement_group_id":null,"private_network_ids":["d83d1f33-cc9a-4599-9d0e-73dc9f55c640"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:18:11.383614467Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "679" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0cdf6d8e-7e5a-495f-858b-773bd115ae48 + status: 200 OK + code: 200 + duration: 480.968958ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/e0e1fe16-cea4-4a20-97de-f652560c7bee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:18:11.383614Z","id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","image_id":null,"name":"TestAccASGInstanceGroup","placement_group_id":null,"private_network_ids":["d83d1f33-cc9a-4599-9d0e-73dc9f55c640"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:18:11.383614Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c27d999-0e08-4447-9ea6-e53610b90d17 + status: 200 OK + code: 200 + duration: 42.162667ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:18:02.928678Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ec2434b8-1b69-499a-b6a4-793ee987cf6a + status: 200 OK + code: 200 + duration: 69.602292ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","ipam_ids":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/attach-private-network + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1332 + uncompressed: false + body: '{"created_at":"2025-06-12T21:18:31.382806758Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:18:02.928678Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"pending","updated_at":"2025-06-12T21:18:31.382806758Z"}' + headers: + Content-Length: + - "1332" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 53f4abec-2a56-438d-94e5-e84e6b06e87c + status: 200 OK + code: 200 + duration: 377.255917ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1159 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:18:31.382807Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"pending","updated_at":"2025-06-12T21:18:31.382807Z"}],"total_count":1}' + headers: + Content-Length: + - "1159" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:18:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 72e4ac00-bb66-475a-a69a-b6bac9186720 + status: 200 OK + code: 200 + duration: 109.916458ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:18:31.382807Z","dhcp_config":{"ip_id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba"},"ipam_ids":["be0a59c5-c609-4a20-83b7-c0ecdead72ba"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"ready","updated_at":"2025-06-12T21:18:34.226191Z"}],"total_count":1}' + headers: + Content-Length: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 04989a52-e535-4eb4-9383-8ee58ce94c1d + status: 200 OK + code: 200 + duration: 132.301083ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:18:33.921555Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:01 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - caa26757-f6b5-4cbc-a49e-88d43e394057 + status: 200 OK + code: 200 + duration: 138.98ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:18:33.921555Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 51e9bb10-441c-454c-b096-722ad64836b4 + status: 200 OK + code: 200 + duration: 70.66075ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:18:31.382807Z","dhcp_config":{"ip_id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba"},"ipam_ids":["be0a59c5-c609-4a20-83b7-c0ecdead72ba"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"ready","updated_at":"2025-06-12T21:18:34.226191Z"}],"total_count":1}' + headers: + Content-Length: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - db8ec776-1276-4456-ab2b-695e7a65d6b9 + status: 200 OK + code: 200 + duration: 214.183833ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d83d1f33-cc9a-4599-9d0e-73dc9f55c640&resource_type=lb_server + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-12T21:18:31.864595Z","id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","mac_address":"02:00:00:14:1D:98","name":"TestAccASGInstanceGroup","type":"lb_server"},"reverses":[],"source":{"subnet_id":"b85b1cb6-d876-45f9-b298-21538be19f11"},"tags":[],"updated_at":"2025-06-12T21:18:32.528668Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a8db11e-cad8-4031-a98b-359f21edc3fe + status: 200 OK + code: 200 + duration: 79.706583ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:18:33.921555Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d2ad9828-a7cb-4d9b-829e-15349f1db26d + status: 200 OK + code: 200 + duration: 76.51ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 608 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-lb-bkd-dazzling-fermi","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/backends + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1983 + uncompressed: false + body: '{"created_at":"2025-06-12T21:19:02.559083027Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"a847241f-febe-4702-959b-1b8fdd19bd65","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:19:02.589245673Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-dazzling-fermi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:19:02.559083027Z"}' + headers: + Content-Length: + - "1983" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18cb1187-010c-4868-8abb-23bf31b5dc05 + status: 200 OK + code: 200 + duration: 330.217416ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1107 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:19:02.589246Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1107" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d5165ff7-b1fa-4143-86e8-da1bb7bd0431 + status: 200 OK + code: 200 + duration: 73.79125ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a847241f-febe-4702-959b-1b8fdd19bd65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1974 + uncompressed: false + body: '{"created_at":"2025-06-12T21:19:02.559083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"a847241f-febe-4702-959b-1b8fdd19bd65","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:19:02.589246Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-dazzling-fermi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:19:02.559083Z"}' + headers: + Content-Length: + - "1974" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1a910773-1e54-454d-b9c4-e47ab498df53 + status: 200 OK + code: 200 + duration: 96.085084ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9339c776-71cc-46f4-af81-4768b01a4eab + status: 200 OK + code: 200 + duration: 66.628458ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 439 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstanceGroup","tags":["terraform-test","instance-group"],"template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","capacity":{"max_replicas":5,"min_replicas":1,"cooldown_delay":"300.000000000s"},"loadbalancer":{"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 608 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:19:03.289524576Z","error_messages":[],"id":"9bfa9c42-1747-4392-b74b-c2121e40807f","instance_template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","loadbalancer":{"backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"},"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:19:03.289524576Z"}' + headers: + Content-Length: + - "608" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ef70f928-d7b0-4c58-8bad-b141a60a67a4 + status: 200 OK + code: 200 + duration: 347.858875ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 602 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:19:03.289524Z","error_messages":[],"id":"9bfa9c42-1747-4392-b74b-c2121e40807f","instance_template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","loadbalancer":{"backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"},"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:19:03.289524Z"}' + headers: + Content-Length: + - "602" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 950c6d49-a1f7-438b-a7f2-fcff24e55d00 + status: 200 OK + code: 200 + duration: 43.223292ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 602 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:19:03.289524Z","error_messages":[],"id":"9bfa9c42-1747-4392-b74b-c2121e40807f","instance_template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","loadbalancer":{"backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"},"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:19:03.289524Z"}' + headers: + Content-Length: + - "602" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 39548e34-c708-4aa4-8e4b-edb7dbf924e7 + status: 200 OK + code: 200 + duration: 47.6975ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44b91620-a1f9-495e-9c57-38edee07f042 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.765689Z","custom_routes_propagation_enabled":false,"id":"44b91620-a1f9-495e-9c57-38edee07f042","is_default":false,"name":"TestAccASGInstanceGroup","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-06-12T21:17:59.765689Z"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14e53b2d-31fb-4c14-be93-22937996c398 + status: 200 OK + code: 200 + duration: 36.452375ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 82213d5f-9b95-4818-aa57-75803b3f4607 + status: 200 OK + code: 200 + duration: 47.840959ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b3c7a45f-299e-488a-87e0-b5d4683ca8b9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 328 + uncompressed: false + body: '{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "328" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 30c5f10b-9f6b-4df9-bfa5-8e09da09e52b + status: 200 OK + code: 200 + duration: 52.501625ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d83d1f33-cc9a-4599-9d0e-73dc9f55c640 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1093 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.891310Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","name":"TestAccASGInstanceGroup","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:17:59.891310Z","id":"b85b1cb6-d876-45f9-b298-21538be19f11","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"},{"created_at":"2025-06-12T21:17:59.891310Z","id":"d9710eba-31de-40b9-865c-49ef1797b01a","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:1018::/64","updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}],"tags":[],"updated_at":"2025-06-12T21:17:59.891310Z","vpc_id":"44b91620-a1f9-495e-9c57-38edee07f042"}' + headers: + Content-Length: + - "1093" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac3a1fe6-8864-429e-a952-43292713f2df + status: 200 OK + code: 200 + duration: 50.406125ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 05c565b9-1626-4eb1-8c85-54ea20b1dc2d + status: 200 OK + code: 200 + duration: 80.036916ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0bc8489c-e8c8-43ab-8bc0-e73f73f025c2 + status: 200 OK + code: 200 + duration: 69.967625ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 22831432-b0a7-460a-acd8-2cc6f7d0c6cf + status: 200 OK + code: 200 + duration: 219.43175ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/e0e1fe16-cea4-4a20-97de-f652560c7bee + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 673 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:18:11.383614Z","id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","image_id":null,"name":"TestAccASGInstanceGroup","placement_group_id":null,"private_network_ids":["d83d1f33-cc9a-4599-9d0e-73dc9f55c640"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:18:11.383614Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "673" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6cf03a77-e99a-44bd-8739-934a1d043493 + status: 200 OK + code: 200 + duration: 58.061084ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:18:31.382807Z","dhcp_config":{"ip_id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba"},"ipam_ids":["be0a59c5-c609-4a20-83b7-c0ecdead72ba"],"lb":{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"ready","updated_at":"2025-06-12T21:18:34.226191Z"}],"total_count":1}' + headers: + Content-Length: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 15cde3a6-f8ac-4bbd-9a7c-61faba59579a + status: 200 OK + code: 200 + duration: 128.520167ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d83d1f33-cc9a-4599-9d0e-73dc9f55c640&resource_type=lb_server + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 526 + uncompressed: false + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-12T21:18:31.864595Z","id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","mac_address":"02:00:00:14:1D:98","name":"TestAccASGInstanceGroup","type":"lb_server"},"reverses":[],"source":{"subnet_id":"b85b1cb6-d876-45f9-b298-21538be19f11"},"tags":[],"updated_at":"2025-06-12T21:18:32.528668Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "526" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3fb1610b-d715-41b2-adb5-0279de9c7451 + status: 200 OK + code: 200 + duration: 72.7735ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a847241f-febe-4702-959b-1b8fdd19bd65 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1972 + uncompressed: false + body: '{"created_at":"2025-06-12T21:19:02.559083Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"a847241f-febe-4702-959b-1b8fdd19bd65","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-dazzling-fermi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:19:02.559083Z"}' + headers: + Content-Length: + - "1972" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ca7fbd98-4262-42ae-8444-3b2704e53e58 + status: 200 OK + code: 200 + duration: 69.717541ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb507734-16b6-4903-b165-7609d4ea2337 + status: 200 OK + code: 200 + duration: 66.918791ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 602 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:19:03.289524Z","error_messages":[],"id":"9bfa9c42-1747-4392-b74b-c2121e40807f","instance_template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","loadbalancer":{"backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"},"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:19:03.289524Z"}' + headers: + Content-Length: + - "602" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ba066146-fb15-48a0-aaff-5422abfdc1fa + status: 200 OK + code: 200 + duration: 49.7345ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 602 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:19:03.289524Z","error_messages":[],"id":"9bfa9c42-1747-4392-b74b-c2121e40807f","instance_template_id":"e0e1fe16-cea4-4a20-97de-f652560c7bee","loadbalancer":{"backend_ids":["a847241f-febe-4702-959b-1b8fdd19bd65"],"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"},"name":"TestAccASGInstanceGroup","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:19:03.289524Z"}' + headers: + Content-Length: + - "602" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 14457d31-91b0-4fb5-98fd-0462ee1b93cd + status: 200 OK + code: 200 + duration: 47.811542ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c3cc1deb-9e86-49e3-b27f-1f518e241627 + status: 204 No Content + code: 204 + duration: 60.075416ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=9bfa9c42-1747-4392-b74b-c2121e40807f&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3efbcc12-ee7d-43d7-89ac-b329692ef4a3 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 104.863667ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/e0e1fe16-cea4-4a20-97de-f652560c7bee + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16472d92-7c9e-4616-b718-cbe73bdcd025 + status: 204 No Content + code: 204 + duration: 56.717542ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:02.880153Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 24ff7ec1-8af8-413b-a080-29449fd12938 + status: 200 OK + code: 200 + duration: 78.468ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:18:05.112125Z","id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","name":"tf-volume-gallant-swirles","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:18:05.112125Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 585cc07d-e5cc-4ba7-a410-e0650d28ba3a + status: 200 OK + code: 200 + duration: 146.18325ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/a847241f-febe-4702-959b-1b8fdd19bd65 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 901c49eb-47dc-44a0-b2ae-701320688999 + status: 204 No Content + code: 204 + duration: 249.863708ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1107 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:19:04.989793Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1107" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ac2d59e9-9c41-4cca-a3ad-db9003d3a8cb + status: 200 OK + code: 200 + duration: 73.401083ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 032d5f3d-ed1e-44cc-84b9-27b136c689b5 + status: 204 No Content + code: 204 + duration: 232.053334ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/b71a9d64-b9a5-40e6-a78b-1530503a0fdc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"b71a9d64-b9a5-40e6-a78b-1530503a0fdc","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - af18017e-dd70-4f62-a5ea-12a066059156 + status: 404 Not Found + code: 404 + duration: 39.561667ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1107 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:19:04.989793Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1107" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1732b016-cc4c-461d-b971-de453997cd6e + status: 200 OK + code: 200 + duration: 68.979709ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:17:59.792165Z","id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","last_detached_at":null,"name":"tf-volume-gallant-swirles","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:17:59.792165Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea58786c-289a-4c88-8b8b-7bac1c3dad68 + status: 200 OK + code: 200 + duration: 44.860916ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1229 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:18:31.382807Z","dhcp_config":{"ip_id":"be0a59c5-c609-4a20-83b7-c0ecdead72ba"},"ipam_ids":["be0a59c5-c609-4a20-83b7-c0ecdead72ba"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"},"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640","status":"ready","updated_at":"2025-06-12T21:18:34.226191Z"}],"total_count":1}' + headers: + Content-Length: + - "1229" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 76429844-3be0-4dea-bbf4-3bbe6f3d7813 + status: 200 OK + code: 200 + duration: 110.083125ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa89186f-e6db-4038-8e21-137d94bae9c1 + status: 204 No Content + code: 204 + duration: 77.101083ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/ad11e111-fcf1-4311-80e9-ab0fc8e35554 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"ad11e111-fcf1-4311-80e9-ab0fc8e35554","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a8f4a21-824c-43bb-bf30-c1eab4a6bbb4 + status: 404 Not Found + code: 404 + duration: 43.240917ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"d83d1f33-cc9a-4599-9d0e-73dc9f55c640"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21/detach-private-network + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d0b1682d-1acb-4c42-9fb4-c79d824a1d9b + status: 204 No Content + code: 204 + duration: 270.124125ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1105 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:05.270592Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:18:04.107956Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1105" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 252033d1-721d-4c9c-bec8-fadbe1330590 + status: 200 OK + code: 200 + duration: 61.258375ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21?release_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:05 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b38676fc-11fa-44c9-86a1-12df450f8c19 + status: 204 No Content + code: 204 + duration: 337.210666ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1109 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:18:00.742264Z","description":"","frontend_count":0,"id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","instances":[{"created_at":"2025-06-12T21:15:26.549777Z","id":"c7585d24-9ba0-4d2a-8b42-20a94c624770","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:19:05.270592Z","zone":"fr-par-1"}],"ip":[{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":"3b4e399e-07ed-4dfc-93d4-38da69644b21","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceGroup","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-06-12T21:19:05.792019Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1109" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:06 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2adb360-a70d-4a5b-87c1-707e2f4fa82f + status: 200 OK + code: 200 + duration: 62.96425ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 23303911-a5af-45f8-a45c-4f6b2b952847 + status: 404 Not Found + code: 404 + duration: 21.932041ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/3b4e399e-07ed-4dfc-93d4-38da69644b21 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bb7f3e8f-56e6-4b56-8bdc-3ec467212cd2 + status: 404 Not Found + code: 404 + duration: 39.68175ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b3c7a45f-299e-488a-87e0-b5d4683ca8b9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 294 + uncompressed: false + body: '{"id":"b3c7a45f-299e-488a-87e0-b5d4683ca8b9","ip_address":"62.210.39.68","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-68.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "294" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8c12a69-ea62-4322-9427-dfa68a1ddc15 + status: 200 OK + code: 200 + duration: 54.448542ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/b3c7a45f-299e-488a-87e0-b5d4683ca8b9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:36 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6333e6cb-c94d-464b-9c02-3a9eade71d98 + status: 204 No Content + code: 204 + duration: 405.358125ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d83d1f33-cc9a-4599-9d0e-73dc9f55c640 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ab69286-5645-49df-b06f-b28eb038f04d + status: 204 No Content + code: 204 + duration: 1.442612834s + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/44b91620-a1f9-495e-9c57-38edee07f042 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6e02152a-09dc-4d09-9290-c0df9d285c69 + status: 204 No Content + code: 204 + duration: 97.137875ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/9bfa9c42-1747-4392-b74b-c2121e40807f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 38 + uncompressed: false + body: '{"message":"instance_group not Found"}' + headers: + Content-Length: + - "38" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:19:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8e7a3ac2-880a-4847-8ab3-4f8f37f863bc + status: 404 Not Found + code: 404 + duration: 22.169625ms diff --git a/internal/services/autoscaling/testdata/instance-policy-basic.cassette.yaml b/internal/services/autoscaling/testdata/instance-policy-basic.cassette.yaml new file mode 100644 index 0000000000..f8ddec0c14 --- /dev/null +++ b/internal/services/autoscaling/testdata/instance-policy-basic.cassette.yaml @@ -0,0 +1,3782 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 79 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + 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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 296 + uncompressed: false + body: '{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1179f6f-391f-4097-94ca-f3ec1b370a6b + status: 200 OK + code: 200 + duration: 203.099208ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 120 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstancePolicy","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.312861Z","custom_routes_propagation_enabled":false,"id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30","is_default":false,"name":"TestAccASGInstancePolicy","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-06-12T21:06:26.312861Z"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1cfb67f1-19da-43f7-ba94-06cabfa2086c + status: 200 OK + code: 200 + duration: 204.014167ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 149 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-volume-nervous-leavitt","perf_iops":5000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","from_empty":{"size":10000000000},"tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7d4bed5-f88d-46ea-bb5e-d74efde5cd08 + status: 200 OK + code: 200 + duration: 220.234416ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c5e70be-53cd-4c1e-80b9-82c626f2eb30 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.312861Z","custom_routes_propagation_enabled":false,"id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30","is_default":false,"name":"TestAccASGInstancePolicy","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-06-12T21:06:26.312861Z"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b8eb93df-29ca-41a2-97aa-5fc58841bdc5 + status: 200 OK + code: 200 + duration: 32.025333ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfd9041d-b76a-42be-950b-13d7b8254793 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 296 + uncompressed: false + body: '{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 881f3136-b80d-42f2-a894-7d5f97f3fbb3 + status: 200 OK + code: 200 + duration: 43.618167ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 422 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "422" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 16c838e6-b657-4e1f-92ad-5cb16413a8cf + status: 200 OK + code: 200 + duration: 45.018291ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 160 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstancePolicy","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.438519Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5a8661dc-b373-45dd-af58-75055b504f8f","name":"TestAccASGInstancePolicy","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:06:26.438519Z","id":"b9e0ba10-9e15-45a1-bc4a-d5a289364002","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"},{"created_at":"2025-06-12T21:06:26.438519Z","id":"faf35aac-2ded-4514-b3aa-c4c20d9efee2","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7029::/64","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}],"tags":[],"updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:26 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6d2f1d86-a18e-4511-b5a4-d76bbcd6ce9b + status: 200 OK + code: 200 + duration: 627.455833ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a8661dc-b373-45dd-af58-75055b504f8f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.438519Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5a8661dc-b373-45dd-af58-75055b504f8f","name":"TestAccASGInstancePolicy","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:06:26.438519Z","id":"b9e0ba10-9e15-45a1-bc4a-d5a289364002","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"},{"created_at":"2025-06-12T21:06:26.438519Z","id":"faf35aac-2ded-4514-b3aa-c4c20d9efee2","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7029::/64","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}],"tags":[],"updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9ed02d1e-e3b8-4979-8121-54dd435a86f7 + status: 200 OK + code: 200 + duration: 50.213292ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 270 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstanceTemplatePrivateNetwork","description":"","ip_id":"cfd9041d-b76a-42be-950b-13d7b8254793","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 928 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213251949Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:27.213251949Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "928" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a73585d1-fea7-40c2-bb4b-cab59d4da3c3 + status: 200 OK + code: 200 + duration: 424.050875ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1129 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-12T21:06:27.478067Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-12T21:06:27.484676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:27 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b7f66d84-626f-4fea-82c4-8534c520a041 + status: 200 OK + code: 200 + duration: 61.65075ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78926494-a382-4621-8786-63767731b427 + status: 200 OK + code: 200 + duration: 42.464208ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 96737c46-7522-485f-93a7-b0f7d52fb9d3 + status: 200 OK + code: 200 + duration: 49.10275ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"volume_id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"test-ds-block-snapshot-basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8b277f9b-acac-4c25-8f55-c3a134121950 + status: 200 OK + code: 200 + duration: 203.680708ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 466 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "466" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b75afb11-6d62-40d3-9d23-c5217956f475 + status: 200 OK + code: 200 + duration: 143.618333ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 94677eea-c482-4c18-bb1b-b6db57b69fd5 + status: 200 OK + code: 200 + duration: 168.661125ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - fa7ab971-080c-4f30-895c-d0ef298bcca1 + status: 200 OK + code: 200 + duration: 158.517125ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 455 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"commercial_type":"PLAY2-MICRO","volumes":{"0":{"name":"as-volume","perf_iops":5000,"from_snapshot":{"size":null,"snapshot_id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8"},"tags":[],"boot":true,"volume_type":"sbs"}},"tags":["terraform-test","instance-template"],"public_ips_v4_count":1,"public_ips_v6_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstancePolicy","private_network_ids":["5a8661dc-b373-45dd-af58-75055b504f8f"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 680 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:06:37.437088673Z","id":"ce8711a2-337f-452e-a48c-8883e6d75548","image_id":null,"name":"TestAccASGInstancePolicy","placement_group_id":null,"private_network_ids":["5a8661dc-b373-45dd-af58-75055b504f8f"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:06:37.437088673Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "680" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f15877b8-d03e-4bb7-b23b-561b14279e12 + status: 200 OK + code: 200 + duration: 251.865625ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/ce8711a2-337f-452e-a48c-8883e6d75548 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 674 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:06:37.437088Z","id":"ce8711a2-337f-452e-a48c-8883e6d75548","image_id":null,"name":"TestAccASGInstancePolicy","placement_group_id":null,"private_network_ids":["5a8661dc-b373-45dd-af58-75055b504f8f"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:06:37.437088Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:37 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c0b01d7f-de9e-48de-b3ee-5a1389e188ea + status: 200 OK + code: 200 + duration: 61.5425ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:06:29.130455Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3ac8a1aa-8407-402f-ae6e-6d9b3ce4714a + status: 200 OK + code: 200 + duration: 65.386333ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 75 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","ipam_ids":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/attach-private-network + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1351 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:57.810398584Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:06:29.130455Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"pending","updated_at":"2025-06-12T21:06:57.810398584Z"}' + headers: + Content-Length: + - "1351" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:57 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7d3d9e7-fdaa-4f9a-9357-01992280cfef + status: 200 OK + code: 200 + duration: 465.903375ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1178 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:06:57.810399Z","dhcp_config":{"ip_id":null},"ipam_ids":[],"lb":{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"pending","updated_at":"2025-06-12T21:06:57.810399Z"}],"total_count":1}' + headers: + Content-Length: + - "1178" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:06:58 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f54b1925-b5cd-4464-bef2-eec80d7380ef + status: 200 OK + code: 200 + duration: 137.066459ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1248 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:06:57.810399Z","dhcp_config":{"ip_id":"54a79388-5867-4fe3-9a36-dddabf478e03"},"ipam_ids":["54a79388-5867-4fe3-9a36-dddabf478e03"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"ready","updated_at":"2025-06-12T21:07:02.653239Z"}],"total_count":1}' + headers: + Content-Length: + - "1248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cb8c6aa1-419c-4929-8904-ef9c12208dac + status: 200 OK + code: 200 + duration: 127.602291ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:02.342599Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c82ab67e-2058-42aa-a7e7-a53610fd8b06 + status: 200 OK + code: 200 + duration: 89.527083ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:02.342599Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c377b690-f3a7-4dde-bc09-6708400a2206 + status: 200 OK + code: 200 + duration: 68.077834ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1248 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:06:57.810399Z","dhcp_config":{"ip_id":"54a79388-5867-4fe3-9a36-dddabf478e03"},"ipam_ids":["54a79388-5867-4fe3-9a36-dddabf478e03"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"ready","updated_at":"2025-06-12T21:07:02.653239Z"}],"total_count":1}' + headers: + Content-Length: + - "1248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 25a3968d-66c7-4540-9464-20b06c577fdc + status: 200 OK + code: 200 + duration: 163.571791ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a8661dc-b373-45dd-af58-75055b504f8f&resource_type=lb_server + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-12T21:07:00.361977Z","id":"54a79388-5867-4fe3-9a36-dddabf478e03","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","mac_address":"02:00:00:1A:2E:74","name":"TestAccASGInstanceTemplatePrivateNetwork","type":"lb_server"},"reverses":[],"source":{"subnet_id":"b9e0ba10-9e15-45a1-bc4a-d5a289364002"},"tags":[],"updated_at":"2025-06-12T21:07:01.035434Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2f28bfbf-ad6f-4f2f-9b40-dbbc1cb15727 + status: 200 OK + code: 200 + duration: 81.36125ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:02.342599Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7deb1be3-e2c9-45b8-bcec-8c00c6187ac1 + status: 200 OK + code: 200 + duration: 70.485583ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 608 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-lb-bkd-magical-agnesi","forward_protocol":"tcp","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":[],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/backends + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 2002 + uncompressed: false + body: '{"created_at":"2025-06-12T21:07:28.963446998Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:07:28.987547285Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-magical-agnesi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:07:28.963446998Z"}' + headers: + Content-Length: + - "2002" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f14dd06b-cc5f-440e-95ec-e935f9c5e270 + status: 200 OK + code: 200 + duration: 328.469291ms + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1126 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:07:28.987547Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1126" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c095a99c-d9b4-4d61-bd04-74c7fcfbb509 + status: 200 OK + code: 200 + duration: 70.468333ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1991 + uncompressed: false + body: '{"created_at":"2025-06-12T21:07:28.963447Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-magical-agnesi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:07:28.963447Z"}' + headers: + Content-Length: + - "1991" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 70a1c67b-fbbe-4ddb-a2a4-9482b224ddc0 + status: 200 OK + code: 200 + duration: 84.902833ms + - id: 30 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1906e663-a2e2-4ff5-b954-3c27e5e7f818 + status: 200 OK + code: 200 + duration: 82.346333ms + - id: 31 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 440 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstancePolicy","tags":["terraform-test","instance-group"],"template_id":"ce8711a2-337f-452e-a48c-8883e6d75548","capacity":{"max_replicas":5,"min_replicas":1,"cooldown_delay":"300.000000000s"},"loadbalancer":{"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","backend_ids":["b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a"],"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"}}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 609 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:07:29.738302804Z","error_messages":[],"id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","instance_template_id":"ce8711a2-337f-452e-a48c-8883e6d75548","loadbalancer":{"backend_ids":["b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a"],"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"},"name":"TestAccASGInstancePolicy","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:07:29.738302804Z"}' + headers: + Content-Length: + - "609" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4ea48d98-edbc-4d87-9f9f-56d7c399b428 + status: 200 OK + code: 200 + duration: 359.362084ms + - id: 32 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/91a8adf1-1e31-496a-8a06-f9e1ef22831e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 603 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:07:29.738302Z","error_messages":[],"id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","instance_template_id":"ce8711a2-337f-452e-a48c-8883e6d75548","loadbalancer":{"backend_ids":["b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a"],"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"},"name":"TestAccASGInstancePolicy","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:07:29.738302Z"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d1c0c7ca-36b2-4e7d-a0b5-bf09dd459f26 + status: 200 OK + code: 200 + duration: 56.370875ms + - id: 33 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 343 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstancePolicy","metric":{"name":"cpu scale down","managed_metric":"managed_metric_instance_cpu","operator":"operator_less_than","aggregate":"aggregate_average","sampling_range_min":5,"threshold":40},"action":"scale_down","type":"flat_count","value":1,"priority":2,"instance_group_id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 399 + uncompressed: false + body: '{"action":"scale_down","id":"4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0","instance_group_id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","metric":{"aggregate":"aggregate_average","managed_metric":"managed_metric_instance_cpu","name":"cpu scale down","operator":"operator_less_than","sampling_range_min":5,"threshold":40},"name":"TestAccASGInstancePolicy","priority":2,"type":"flat_count","value":1}' + headers: + Content-Length: + - "399" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f814b65a-b84b-4b7e-97af-ceaa7167b5ca + status: 200 OK + code: 200 + duration: 68.381959ms + - id: 34 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies/4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 399 + uncompressed: false + body: '{"action":"scale_down","id":"4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0","instance_group_id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","metric":{"aggregate":"aggregate_average","managed_metric":"managed_metric_instance_cpu","name":"cpu scale down","operator":"operator_less_than","sampling_range_min":5,"threshold":40},"name":"TestAccASGInstancePolicy","priority":2,"type":"flat_count","value":1}' + headers: + Content-Length: + - "399" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d7d6ff35-7acf-4dae-b51b-2d9685b1d5fd + status: 200 OK + code: 200 + duration: 51.146209ms + - id: 35 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies/4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 399 + uncompressed: false + body: '{"action":"scale_down","id":"4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0","instance_group_id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","metric":{"aggregate":"aggregate_average","managed_metric":"managed_metric_instance_cpu","name":"cpu scale down","operator":"operator_less_than","sampling_range_min":5,"threshold":40},"name":"TestAccASGInstancePolicy","priority":2,"type":"flat_count","value":1}' + headers: + Content-Length: + - "399" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - dfda333a-78c2-410b-9622-5562d4ddaa6f + status: 200 OK + code: 200 + duration: 74.84475ms + - id: 36 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfd9041d-b76a-42be-950b-13d7b8254793 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 330 + uncompressed: false + body: '{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "330" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0f93e3ee-f70b-4b74-b56c-dc7bbdd72210 + status: 200 OK + code: 200 + duration: 44.208375ms + - id: 37 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eb490295-cfcf-4146-95bc-8bb85e1acd2f + status: 200 OK + code: 200 + duration: 45.117042ms + - id: 38 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c5e70be-53cd-4c1e-80b9-82c626f2eb30 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.312861Z","custom_routes_propagation_enabled":false,"id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30","is_default":false,"name":"TestAccASGInstancePolicy","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-06-12T21:06:26.312861Z"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a2166cbc-48d8-4ac4-a299-0d036787a575 + status: 200 OK + code: 200 + duration: 68.777958ms + - id: 39 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a8661dc-b373-45dd-af58-75055b504f8f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1094 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.438519Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"5a8661dc-b373-45dd-af58-75055b504f8f","name":"TestAccASGInstancePolicy","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:06:26.438519Z","id":"b9e0ba10-9e15-45a1-bc4a-d5a289364002","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"},{"created_at":"2025-06-12T21:06:26.438519Z","id":"faf35aac-2ded-4514-b3aa-c4c20d9efee2","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:7029::/64","updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}],"tags":[],"updated_at":"2025-06-12T21:06:26.438519Z","vpc_id":"5c5e70be-53cd-4c1e-80b9-82c626f2eb30"}' + headers: + Content-Length: + - "1094" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e45fe90a-c873-470c-9588-dcd580d6ccf1 + status: 200 OK + code: 200 + duration: 32.092542ms + - id: 40 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a8d3d0cd-2afa-4a22-bfd9-0bd820998e3d + status: 200 OK + code: 200 + duration: 59.677125ms + - id: 41 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c1a72efa-819b-4dea-a2ae-db0bc99062c3 + status: 200 OK + code: 200 + duration: 71.708417ms + - id: 42 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - bba92b50-3e77-4c1a-82b1-be74bdcc7913 + status: 200 OK + code: 200 + duration: 168.59475ms + - id: 43 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/ce8711a2-337f-452e-a48c-8883e6d75548 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 674 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:06:37.437088Z","id":"ce8711a2-337f-452e-a48c-8883e6d75548","image_id":null,"name":"TestAccASGInstancePolicy","placement_group_id":null,"private_network_ids":["5a8661dc-b373-45dd-af58-75055b504f8f"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T21:06:37.437088Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "674" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 34777dae-cb6f-49b8-a874-a684a932ee90 + status: 200 OK + code: 200 + duration: 45.370667ms + - id: 44 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1248 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:06:57.810399Z","dhcp_config":{"ip_id":"54a79388-5867-4fe3-9a36-dddabf478e03"},"ipam_ids":["54a79388-5867-4fe3-9a36-dddabf478e03"],"lb":{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"ready","updated_at":"2025-06-12T21:07:02.653239Z"}],"total_count":1}' + headers: + Content-Length: + - "1248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fa64d36-094e-4470-9af1-21393e540e9a + status: 200 OK + code: 200 + duration: 115.893042ms + - id: 45 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=5a8661dc-b373-45dd-af58-75055b504f8f&resource_type=lb_server + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 543 + uncompressed: false + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-12T21:07:00.361977Z","id":"54a79388-5867-4fe3-9a36-dddabf478e03","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","mac_address":"02:00:00:1A:2E:74","name":"TestAccASGInstanceTemplatePrivateNetwork","type":"lb_server"},"reverses":[],"source":{"subnet_id":"b9e0ba10-9e15-45a1-bc4a-d5a289364002"},"tags":[],"updated_at":"2025-06-12T21:07:01.035434Z","zone":null}],"total_count":1}' + headers: + Content-Length: + - "543" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 045a7222-650f-4cfc-8de8-99cc54227192 + status: 200 OK + code: 200 + duration: 86.619458ms + - id: 46 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1991 + uncompressed: false + body: '{"created_at":"2025-06-12T21:07:28.963447Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"tcp","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-magical-agnesi","on_marked_down_action":"on_marked_down_action_none","pool":[],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-12T21:07:28.963447Z"}' + headers: + Content-Length: + - "1991" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4a892a0a-452f-4028-9e58-79bb1adee59a + status: 200 OK + code: 200 + duration: 82.471958ms + - id: 47 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 83494ccd-d36e-4a60-b89e-43520117cb7e + status: 200 OK + code: 200 + duration: 82.475458ms + - id: 48 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/91a8adf1-1e31-496a-8a06-f9e1ef22831e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 603 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:07:30.896198Z","error_messages":[],"id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","instance_template_id":"ce8711a2-337f-452e-a48c-8883e6d75548","loadbalancer":{"backend_ids":["b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a"],"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"},"name":"TestAccASGInstancePolicy","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:07:30.896198Z"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e6a34a0-29bc-4103-b13c-5041a9e6b57c + status: 200 OK + code: 200 + duration: 42.313334ms + - id: 49 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies/4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 399 + uncompressed: false + body: '{"action":"scale_down","id":"4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0","instance_group_id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","metric":{"aggregate":"aggregate_average","managed_metric":"managed_metric_instance_cpu","name":"cpu scale down","operator":"operator_less_than","sampling_range_min":5,"threshold":40},"name":"TestAccASGInstancePolicy","priority":2,"type":"flat_count","value":1}' + headers: + Content-Length: + - "399" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4966ddcf-80a6-4043-b4ce-158d7ec502d1 + status: 200 OK + code: 200 + duration: 47.461334ms + - id: 50 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies/4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ad83b2ad-de5c-4a12-8d5a-18802fc8f55d + status: 204 No Content + code: 204 + duration: 62.337833ms + - id: 51 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/91a8adf1-1e31-496a-8a06-f9e1ef22831e + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 603 + uncompressed: false + body: '{"capacity":{"cooldown_delay":"300s","max_replicas":5,"min_replicas":1},"created_at":"2025-06-12T21:07:30.896198Z","error_messages":[],"id":"91a8adf1-1e31-496a-8a06-f9e1ef22831e","instance_template_id":"ce8711a2-337f-452e-a48c-8883e6d75548","loadbalancer":{"backend_ids":["b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a"],"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"},"name":"TestAccASGInstancePolicy","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","instance-group"],"updated_at":"2025-06-12T21:07:30.896198Z"}' + headers: + Content-Length: + - "603" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01ff6fb6-8f8d-4824-aaa6-f8dacf25286b + status: 200 OK + code: 200 + duration: 64.110834ms + - id: 52 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-groups/91a8adf1-1e31-496a-8a06-f9e1ef22831e + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 68ac35fc-aec2-4877-9a20-1067b96d05ed + status: 204 No Content + code: 204 + duration: 56.683125ms + - id: 53 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers?name=91a8adf1-1e31-496a-8a06-f9e1ef22831e&order=creation_date_desc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 15 + uncompressed: false + body: '{"servers":[]}' + headers: + Content-Length: + - "15" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Link: + - ; rel="last" + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0d21a853-3afd-4650-b3b5-d980d76f33a1 + X-Total-Count: + - "0" + status: 200 OK + code: 200 + duration: 114.132292ms + - id: 54 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/ce8711a2-337f-452e-a48c-8883e6d75548 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6a943882-3061-41f6-b3c1-85ade6253a41 + status: 204 No Content + code: 204 + duration: 66.195125ms + - id: 55 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":1,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:29.262857Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f9cbd10b-10b3-4e97-af5b-11e3a599b3e8 + status: 200 OK + code: 200 + duration: 66.85275ms + - id: 56 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 467 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:06:31.589673Z","id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","name":"tf-volume-nervous-leavitt","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:06:31.589673Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "467" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f8e93626-a561-44b1-a280-d9ed844c410f + status: 200 OK + code: 200 + duration: 167.163667ms + - id: 57 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/b60bb92d-a9dd-4d8c-96bc-91aa10cbfd3a + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 893b10b8-deb5-4f96-a397-d1a9c2ec498b + status: 204 No Content + code: 204 + duration: 293.54825ms + - id: 58 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1126 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:07:31.812929Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1126" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee2d85f1-1bf3-44d1-b9ac-547da205ddde + status: 200 OK + code: 200 + duration: 60.825417ms + - id: 59 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1126 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-12T21:07:31.812929Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1126" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2e273176-ea01-48c2-a028-6e7954157757 + status: 200 OK + code: 200 + duration: 69.216416ms + - id: 60 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4236da49-ea07-4ee8-bed3-aa4388c59ee6 + status: 204 No Content + code: 204 + duration: 289.776834ms + - id: 61 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/5a051f0d-05ca-4af6-bfa3-1497b03336f8 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"5a051f0d-05ca-4af6-bfa3-1497b03336f8","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5d2106f7-3ee0-4e19-a4c0-23607cb4c19a + status: 404 Not Found + code: 404 + duration: 40.824292ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/private-networks?order_by=created_at_asc + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1248 + uncompressed: false + body: '{"private_network":[{"created_at":"2025-06-12T21:06:57.810399Z","dhcp_config":{"ip_id":"54a79388-5867-4fe3-9a36-dddabf478e03"},"ipam_ids":["54a79388-5867-4fe3-9a36-dddabf478e03"],"lb":{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"},"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f","status":"ready","updated_at":"2025-06-12T21:07:02.653239Z"}],"total_count":1}' + headers: + Content-Length: + - "1248" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f3a1fd43-5676-419a-8a4f-661969d52e4f + status: 200 OK + code: 200 + duration: 110.031958ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 423 + uncompressed: false + body: '{"created_at":"2025-06-12T21:06:26.329676Z","id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","last_detached_at":null,"name":"tf-volume-nervous-leavitt","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:06:26.329676Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "423" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f5cdb0db-ea61-408f-baec-da227003f8f0 + status: 200 OK + code: 200 + duration: 38.175292ms + - id: 64 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1126f7b5-cdd9-4016-a5d3-f8b1668de932 + status: 204 No Content + code: 204 + duration: 74.320917ms + - id: 65 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/08bde3dc-52b4-4214-bad9-d44dc8c2055b + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"08bde3dc-52b4-4214-bad9-d44dc8c2055b","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9a1fc151-caf8-4067-8891-fa6a955eb64d + status: 404 Not Found + code: 404 + duration: 59.777125ms + - id: 66 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 61 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"private_network_id":"5a8661dc-b373-45dd-af58-75055b504f8f"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3/detach-private-network + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 2acbe6b3-264e-4c31-b15e-ce9ec00f2e7e + status: 204 No Content + code: 204 + duration: 275.826375ms + - id: 67 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1124 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:32.111967Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:06:30.259592Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1124" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eadb3af9-d632-47cd-92b5-9de190915108 + status: 200 OK + code: 200 + duration: 57.905333ms + - id: 68 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3?release_ip=false + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 8ef21338-ab8d-4dd8-ad19-14be97519fc3 + status: 204 No Content + code: 204 + duration: 331.278625ms + - id: 69 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1128 + uncompressed: false + body: '{"backend_count":0,"created_at":"2025-06-12T21:06:27.213252Z","description":"","frontend_count":0,"id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","instances":[{"created_at":"2025-06-12T21:02:06.473295Z","id":"052a2d3c-384d-4c8e-8f87-674769acfa1c","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-12T21:07:32.111967Z","zone":"fr-par-1"}],"ip":[{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":"c66f634e-f040-4e3e-a68b-9d63f8d732f3","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:07:32.639898Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "1128" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:07:32 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e10c4a0d-73db-4e4c-a33a-d78a7d44fe1d + status: 200 OK + code: 200 + duration: 70.237667ms + - id: 70 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:02 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 971845dc-1caf-4539-b263-459f5b17441c + status: 404 Not Found + code: 404 + duration: 28.370667ms + - id: 71 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/c66f634e-f040-4e3e-a68b-9d63f8d732f3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 27 + uncompressed: false + body: '{"message":"lbs not Found"}' + headers: + Content-Length: + - "27" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 84822bfa-0f1c-4d63-b8fb-8b8976df5c06 + status: 404 Not Found + code: 404 + duration: 51.459458ms + - id: 72 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfd9041d-b76a-42be-950b-13d7b8254793 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 296 + uncompressed: false + body: '{"id":"cfd9041d-b76a-42be-950b-13d7b8254793","ip_address":"62.210.39.230","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"62-210-39-230.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + headers: + Content-Length: + - "296" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 639792a1-de4f-496f-ac49-c703e6579ec1 + status: 200 OK + code: 200 + duration: 47.461083ms + - id: 73 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/cfd9041d-b76a-42be-950b-13d7b8254793 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:03 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 631a7f92-d40e-4e2a-852a-45cdd17b3eed + status: 204 No Content + code: 204 + duration: 382.917833ms + - id: 74 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/5a8661dc-b373-45dd-af58-75055b504f8f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 719c61a8-33f5-4500-8946-57131e174c8f + status: 204 No Content + code: 204 + duration: 1.415597083s + - id: 75 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/5c5e70be-53cd-4c1e-80b9-82c626f2eb30 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 18b0f6cd-78f6-4efa-bf35-1d2cdbe0198a + status: 204 No Content + code: 204 + duration: 99.639625ms + - id: 76 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-policies/4c080a7d-86e4-44dc-a3e2-3a6e679fe2e0 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 30 + uncompressed: false + body: '{"message":"policy not Found"}' + headers: + Content-Length: + - "30" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:04 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge03) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - a7673963-dd51-4691-b621-af17db4d6ecc + status: 404 Not Found + code: 404 + duration: 30.413ms diff --git a/internal/services/autoscaling/testdata/instance-template-basic.cassette.yaml b/internal/services/autoscaling/testdata/instance-template-basic.cassette.yaml new file mode 100644 index 0000000000..de27c8d786 --- /dev/null +++ b/internal/services/autoscaling/testdata/instance-template-basic.cassette.yaml @@ -0,0 +1,1081 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 151 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-volume-beautiful-babbage","perf_iops":5000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","from_empty":{"size":10000000000},"tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 424 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f88f6cfe-6dd9-4d92-93ab-4b85c3b00aa2 + status: 200 OK + code: 200 + duration: 304.066ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 424 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "424" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:11 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 42297dd7-eeb5-405f-8761-9d73673c4803 + status: 200 OK + code: 200 + duration: 52.750875ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 425 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "425" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 56f05fa0-b9af-4a60-9d30-076a0f3484e1 + status: 200 OK + code: 200 + duration: 53.918417ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 425 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "425" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 40fdba39-db8c-4107-b507-d53e1b1e7486 + status: 200 OK + code: 200 + duration: 39.357208ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 152 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"volume_id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"test-ds-block-snapshot-basic","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 468 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "468" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:16 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2527050-5c97-4a07-a304-8287985929da + status: 200 OK + code: 200 + duration: 331.74325ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 468 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "468" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 62d10058-5593-43da-b12d-21f7a4931705 + status: 200 OK + code: 200 + duration: 167.100541ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 469 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "469" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6fc9b34d-2d4c-4ee2-9a16-93e1852e886b + status: 200 OK + code: 200 + duration: 154.233958ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 469 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "469" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - c2780975-6dfe-42a5-9343-8608f3665100 + status: 200 OK + code: 200 + duration: 199.61125ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 433 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"commercial_type":"PLAY2-MICRO","volumes":{"0":{"name":"as-volume","perf_iops":5000,"from_snapshot":{"size":null,"snapshot_id":"493889c2-c919-423b-9b96-49095205b3ec"},"tags":[],"boot":true,"volume_type":"sbs"}},"tags":["terraform-test","instance-template"],"public_ips_v4_count":1,"public_ips_v6_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-autoscaling-instance-template-basic","private_network_ids":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 658 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T20:34:22.623307103Z","id":"551b53ae-8433-4d6f-9d67-21319918bd3f","image_id":null,"name":"test-autoscaling-instance-template-basic","placement_group_id":null,"private_network_ids":[],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T20:34:22.623307103Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"493889c2-c919-423b-9b96-49095205b3ec"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "658" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b132bb5f-da5d-475f-bf0f-bfeb7f6bb760 + status: 200 OK + code: 200 + duration: 170.531375ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/551b53ae-8433-4d6f-9d67-21319918bd3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 652 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T20:34:22.623307Z","id":"551b53ae-8433-4d6f-9d67-21319918bd3f","image_id":null,"name":"test-autoscaling-instance-template-basic","placement_group_id":null,"private_network_ids":[],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T20:34:22.623307Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"493889c2-c919-423b-9b96-49095205b3ec"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "652" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - de9af692-3f21-47e2-8318-ac2c9eb6bf4a + status: 200 OK + code: 200 + duration: 44.679792ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/551b53ae-8433-4d6f-9d67-21319918bd3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 652 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T20:34:22.623307Z","id":"551b53ae-8433-4d6f-9d67-21319918bd3f","image_id":null,"name":"test-autoscaling-instance-template-basic","placement_group_id":null,"private_network_ids":[],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T20:34:22.623307Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"493889c2-c919-423b-9b96-49095205b3ec"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "652" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6b561836-0c15-4cd0-8e3f-d6cbc001e16e + status: 200 OK + code: 200 + duration: 45.569959ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 425 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "425" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6668ebe7-effa-4ab8-ad79-ac1a38aa4c49 + status: 200 OK + code: 200 + duration: 50.801667ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 469 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "469" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - e36fdb3c-827d-4cdd-9551-70fb12e07174 + status: 200 OK + code: 200 + duration: 147.673334ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/551b53ae-8433-4d6f-9d67-21319918bd3f + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 652 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T20:34:22.623307Z","id":"551b53ae-8433-4d6f-9d67-21319918bd3f","image_id":null,"name":"test-autoscaling-instance-template-basic","placement_group_id":null,"private_network_ids":[],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","instance-template"],"updated_at":"2025-06-12T20:34:22.623307Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"493889c2-c919-423b-9b96-49095205b3ec"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "652" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 78d26fa6-9d0c-4a97-a1d4-163b9e2919e8 + status: 200 OK + code: 200 + duration: 55.403375ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/551b53ae-8433-4d6f-9d67-21319918bd3f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 114833b8-5e50-4efb-ae67-8f3e4a2969e4 + status: 204 No Content + code: 204 + duration: 54.216958ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 469 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T20:34:16.690730Z","id":"493889c2-c919-423b-9b96-49095205b3ec","name":"test-ds-block-snapshot-basic","parent_volume":{"id":"6f74507c-e55f-4b36-968f-76c534f099ba","name":"tf-volume-beautiful-babbage","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T20:34:16.690730Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "469" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ea14846f-296a-46c1-921d-85211f852c52 + status: 200 OK + code: 200 + duration: 175.660791ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fe9ec6e-09a8-413e-9a29-343f32efba50 + status: 204 No Content + code: 204 + duration: 196.468458ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/493889c2-c919-423b-9b96-49095205b3ec + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"493889c2-c919-423b-9b96-49095205b3ec","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b307f03a-d1c7-4a7c-8db9-97ed6c7290e2 + status: 404 Not Found + code: 404 + duration: 48.496166ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 425 + uncompressed: false + body: '{"created_at":"2025-06-12T20:34:11.398727Z","id":"6f74507c-e55f-4b36-968f-76c534f099ba","last_detached_at":null,"name":"tf-volume-beautiful-babbage","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T20:34:11.398727Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "425" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 9999676c-6395-4224-83c4-dd15bd2a105a + status: 200 OK + code: 200 + duration: 62.469875ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1bb18f77-a35c-47ed-bd6c-8bc639c97d9a + status: 204 No Content + code: 204 + duration: 82.903ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/6f74507c-e55f-4b36-968f-76c534f099ba + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"6f74507c-e55f-4b36-968f-76c534f099ba","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5e25bcfe-bae7-446c-bd97-6a00a13344aa + status: 404 Not Found + code: 404 + duration: 48.082084ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/551b53ae-8433-4d6f-9d67-21319918bd3f + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"message":"instance_template not Found"}' + headers: + Content-Length: + - "41" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 20:34:24 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3c3227a5-cf78-4490-b5a4-e7bb1ad04371 + status: 404 Not Found + code: 404 + duration: 21.80775ms diff --git a/internal/services/autoscaling/testdata/instance-template-private-network.cassette.yaml b/internal/services/autoscaling/testdata/instance-template-private-network.cassette.yaml new file mode 100644 index 0000000000..27c1cc57b7 --- /dev/null +++ b/internal/services/autoscaling/testdata/instance-template-private-network.cassette.yaml @@ -0,0 +1,1473 @@ +--- +version: 2 +interactions: + - id: 0 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 136 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstanceTemplatePrivateNetwork","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.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 439 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.608483Z","custom_routes_propagation_enabled":false,"id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce","is_default":false,"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:08:17.608483Z"}' + headers: + Content-Length: + - "439" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 7f3330fc-71ca-4c90-ac02-1c7268b0fd65 + status: 200 OK + code: 200 + duration: 174.851458ms + - id: 1 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 145 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"tf-volume-eager-tharp","perf_iops":5000,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","from_empty":{"size":10000000000},"tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 418 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "418" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 0900e279-3b27-4bc2-b069-79b77249b1e2 + status: 200 OK + code: 200 + duration: 206.414875ms + - id: 2 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 439 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.608483Z","custom_routes_propagation_enabled":false,"id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce","is_default":false,"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:08:17.608483Z"}' + headers: + Content-Length: + - "439" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 6be2059f-8eca-41da-aee8-24547d6e444c + status: 200 OK + code: 200 + duration: 51.809833ms + - id: 3 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 418 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"creating","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "418" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:17 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 006e02bf-80fb-4e70-a7d8-fd06645bda7e + status: 200 OK + code: 200 + duration: 40.315958ms + - id: 4 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 176 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"name":"TestAccASGInstanceTemplatePrivateNetwork","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.724474Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c9f871c4-4573-4852-8c7d-d70cf481b466","name":"TestAccASGInstanceTemplatePrivateNetwork","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:08:17.724474Z","id":"10073bc2-5def-40a3-b455-0b15a268bde8","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"},{"created_at":"2025-06-12T21:08:17.724474Z","id":"36bf1421-49b9-45c0-acd2-3bbe229c077e","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6229::/64","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}],"tags":[],"updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 86b162c3-6f56-498b-be71-2c22031b1f6f + status: 200 OK + code: 200 + duration: 636.690917ms + - id: 5 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9f871c4-4573-4852-8c7d-d70cf481b466 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.724474Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c9f871c4-4573-4852-8c7d-d70cf481b466","name":"TestAccASGInstanceTemplatePrivateNetwork","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:08:17.724474Z","id":"10073bc2-5def-40a3-b455-0b15a268bde8","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"},{"created_at":"2025-06-12T21:08:17.724474Z","id":"36bf1421-49b9-45c0-acd2-3bbe229c077e","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6229::/64","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}],"tags":[],"updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:18 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 01ef62c8-4602-47c7-985d-b8db11beb547 + status: 200 OK + code: 200 + duration: 39.236958ms + - id: 6 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 29366ecb-03ce-47e8-b1fe-e17e8e43eac0 + status: 200 OK + code: 200 + duration: 55.039417ms + - id: 7 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:22 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - afb40c0d-d6d2-497e-ba10-c291b082b7d3 + status: 200 OK + code: 200 + duration: 41.489875ms + - id: 8 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 164 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"volume_id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"TestAccASGInstanceTemplatePrivateNetwork","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 474 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "474" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 718cf0ae-cb86-49a3-b3b1-361a59152648 + status: 200 OK + code: 200 + duration: 580.754167ms + - id: 9 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 474 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"creating","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "474" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:23 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 094289a0-1c42-444e-bade-d942e6fa1033 + status: 200 OK + code: 200 + duration: 135.007125ms + - id: 10 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - cad40fcd-e45e-4b59-91b8-8c86dda29549 + status: 200 OK + code: 200 + duration: 166.733375ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:28 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 66f7aadf-05bf-4789-93b8-36b024d1cae9 + status: 200 OK + code: 200 + duration: 143.257083ms + - id: 12 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 459 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: '{"commercial_type":"PLAY2-MICRO","volumes":{"0":{"name":"as-volume","perf_iops":5000,"from_snapshot":{"size":null,"snapshot_id":"904171ab-04a8-413a-b017-8e0526b92588"},"tags":[],"boot":true,"volume_type":"sbs"}},"tags":["terraform-test","basic"],"public_ips_v4_count":1,"public_ips_v6_count":0,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"TestAccASGInstanceTemplatePrivateNetwork","private_network_ids":["c9f871c4-4573-4852-8c7d-d70cf481b466"]}' + form: {} + headers: + Content-Type: + - application/json + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates + method: POST + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 684 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:08:29.021329216Z","id":"1ce3519f-03dc-4824-861c-cb2aacd8c6d4","image_id":null,"name":"TestAccASGInstanceTemplatePrivateNetwork","placement_group_id":null,"private_network_ids":["c9f871c4-4573-4852-8c7d-d70cf481b466"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","basic"],"updated_at":"2025-06-12T21:08:29.021329216Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"904171ab-04a8-413a-b017-8e0526b92588"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "684" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4fbc4555-a869-4d27-bb3c-045e2ed66232 + status: 200 OK + code: 200 + duration: 197.303792ms + - id: 13 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/1ce3519f-03dc-4824-861c-cb2aacd8c6d4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 678 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:08:29.021329Z","id":"1ce3519f-03dc-4824-861c-cb2aacd8c6d4","image_id":null,"name":"TestAccASGInstanceTemplatePrivateNetwork","placement_group_id":null,"private_network_ids":["c9f871c4-4573-4852-8c7d-d70cf481b466"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","basic"],"updated_at":"2025-06-12T21:08:29.021329Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"904171ab-04a8-413a-b017-8e0526b92588"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b595ad91-5f41-4ca3-853e-a1b2aa2c4bde + status: 200 OK + code: 200 + duration: 51.784791ms + - id: 14 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/1ce3519f-03dc-4824-861c-cb2aacd8c6d4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 678 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:08:29.021329Z","id":"1ce3519f-03dc-4824-861c-cb2aacd8c6d4","image_id":null,"name":"TestAccASGInstanceTemplatePrivateNetwork","placement_group_id":null,"private_network_ids":["c9f871c4-4573-4852-8c7d-d70cf481b466"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","basic"],"updated_at":"2025-06-12T21:08:29.021329Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"904171ab-04a8-413a-b017-8e0526b92588"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4aa1d4ee-85f1-4296-a731-f2829931c227 + status: 200 OK + code: 200 + duration: 66.114458ms + - id: 15 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 439 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.608483Z","custom_routes_propagation_enabled":false,"id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce","is_default":false,"name":"TestAccASGInstanceTemplatePrivateNetwork","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-06-12T21:08:17.608483Z"}' + headers: + Content-Length: + - "439" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 034f7ae2-e029-47f8-b34a-ab8e7452f8b4 + status: 200 OK + code: 200 + duration: 126.082791ms + - id: 16 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d33b2459-8b8b-4400-8c58-6bba3f4397bc + status: 200 OK + code: 200 + duration: 126.122125ms + - id: 17 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9f871c4-4573-4852-8c7d-d70cf481b466 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1110 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.724474Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"c9f871c4-4573-4852-8c7d-d70cf481b466","name":"TestAccASGInstanceTemplatePrivateNetwork","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-12T21:08:17.724474Z","id":"10073bc2-5def-40a3-b455-0b15a268bde8","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"},{"created_at":"2025-06-12T21:08:17.724474Z","id":"36bf1421-49b9-45c0-acd2-3bbe229c077e","private_network_id":"c9f871c4-4573-4852-8c7d-d70cf481b466","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6229::/64","updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}],"tags":[],"updated_at":"2025-06-12T21:08:17.724474Z","vpc_id":"3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce"}' + headers: + Content-Length: + - "1110" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 37501ef2-5b36-4b05-a50a-3154236a47e6 + status: 200 OK + code: 200 + duration: 33.904041ms + - id: 18 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f428d566-04f6-465d-9342-c89ba11d3c0f + status: 200 OK + code: 200 + duration: 103.169917ms + - id: 19 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/1ce3519f-03dc-4824-861c-cb2aacd8c6d4 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 678 + uncompressed: false + body: '{"commercial_type":"PLAY2-MICRO","created_at":"2025-06-12T21:08:29.021329Z","id":"1ce3519f-03dc-4824-861c-cb2aacd8c6d4","image_id":null,"name":"TestAccASGInstanceTemplatePrivateNetwork","placement_group_id":null,"private_network_ids":["c9f871c4-4573-4852-8c7d-d70cf481b466"],"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","public_ips_v4_count":1,"security_group_id":null,"status":"unknown_status","tags":["terraform-test","basic"],"updated_at":"2025-06-12T21:08:29.021329Z","volumes":{"0":{"boot":true,"from_snapshot":{"size":null,"snapshot_id":"904171ab-04a8-413a-b017-8e0526b92588"},"name":"as-volume","perf_iops":5000,"tags":[],"volume_type":"sbs"}}}' + headers: + Content-Length: + - "678" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 3f94a9ab-64f3-4526-ab16-51156ba5a682 + status: 200 OK + code: 200 + duration: 46.053916ms + - id: 20 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/1ce3519f-03dc-4824-861c-cb2aacd8c6d4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:29 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 5a631fd7-b7ef-4a7f-b361-436c621f8826 + status: 204 No Content + code: 204 + duration: 60.838833ms + - id: 21 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 475 + uncompressed: false + body: '{"class":"sbs","created_at":"2025-06-12T21:08:22.901600Z","id":"904171ab-04a8-413a-b017-8e0526b92588","name":"TestAccASGInstanceTemplatePrivateNetwork","parent_volume":{"id":"d980b615-d0bd-43be-b731-6edc161d1eb3","name":"tf-volume-eager-tharp","status":"available","type":"sbs_5k"},"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"status":"available","tags":[],"updated_at":"2025-06-12T21:08:22.901600Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "475" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - f573f78d-c239-4541-a03b-aba62a149eae + status: 200 OK + code: 200 + duration: 411.907584ms + - id: 22 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 35429ecc-6528-45bb-a31d-df2d56bbdd9b + status: 204 No Content + code: 204 + duration: 249.667875ms + - id: 23 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/snapshots/904171ab-04a8-413a-b017-8e0526b92588 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 129 + uncompressed: false + body: '{"message":"resource is not found","resource":"snapshot","resource_id":"904171ab-04a8-413a-b017-8e0526b92588","type":"not_found"}' + headers: + Content-Length: + - "129" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - eff7e388-6ddd-497a-93b4-da9f26e1f06b + status: 404 Not Found + code: 404 + duration: 51.367916ms + - id: 24 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 419 + uncompressed: false + body: '{"created_at":"2025-06-12T21:08:17.617539Z","id":"d980b615-d0bd-43be-b731-6edc161d1eb3","last_detached_at":null,"name":"tf-volume-eager-tharp","parent_snapshot_id":null,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-12T21:08:17.617539Z","zone":"fr-par-1"}' + headers: + Content-Length: + - "419" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - ee9b61e1-83dd-4f23-b67a-e64331952028 + status: 200 OK + code: 200 + duration: 49.432666ms + - id: 25 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 4df9ec4c-f90d-434a-bd03-ed76b2f2b2e0 + status: 204 No Content + code: 204 + duration: 75.8415ms + - id: 26 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d980b615-d0bd-43be-b731-6edc161d1eb3 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 127 + uncompressed: false + body: '{"message":"resource is not found","resource":"volume","resource_id":"d980b615-d0bd-43be-b731-6edc161d1eb3","type":"not_found"}' + headers: + Content-Length: + - "127" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:30 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d9430122-95a4-47cf-9290-83624c5e4668 + status: 404 Not Found + code: 404 + duration: 39.959084ms + - id: 27 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/c9f871c4-4573-4852-8c7d-d70cf481b466 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - babfc863-a45c-4089-9c34-a2afd0953a31 + status: 204 No Content + code: 204 + duration: 1.395973084s + - id: 28 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3e934ef5-a3e7-4dbe-868c-9a45c3ca83ce + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 153d0dc1-5ab3-41e6-a645-ba8b4fbf70b8 + status: 204 No Content + code: 204 + duration: 95.697792ms + - id: 29 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.2; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/autoscaling/v1alpha1/zones/fr-par-1/instance-templates/1ce3519f-03dc-4824-861c-cb2aacd8c6d4 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 41 + uncompressed: false + body: '{"message":"instance_template not Found"}' + headers: + Content-Length: + - "41" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Thu, 12 Jun 2025 21:08:31 GMT + Server: + - Scaleway API Gateway (fr-par-3;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1e69db69-2905-451f-a70e-6c13d31d0a21 + status: 404 Not Found + code: 404 + duration: 26.212083ms diff --git a/internal/services/autoscaling/testfuncs/sweep.go b/internal/services/autoscaling/testfuncs/sweep.go new file mode 100644 index 0000000000..a249f49079 --- /dev/null +++ b/internal/services/autoscaling/testfuncs/sweep.go @@ -0,0 +1,117 @@ +package autoscalingtestfuncs + +import ( + "fmt" + + "github.com/hashicorp/terraform-plugin-sdk/v2/helper/resource" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/acctest" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/logging" +) + +func AddTestSweepers() { + resource.AddTestSweepers("scaleway_autoscaling_instance_group", &resource.Sweeper{ + Name: "scaleway_autoscaling_instance_group", + F: testSweepInstanceGroup, + }) + + resource.AddTestSweepers("scaleway_autoscaling_instance_template", &resource.Sweeper{ + Name: "scaleway_autoscaling_instance_template", + F: testSweepInstanceTemplate, + }) + + resource.AddTestSweepers("scaleway_autoscaling_instance_policy", &resource.Sweeper{ + Name: "scaleway_autoscaling_instance_policy", + F: testSweepInstancePolicy, + }) +} + +func testSweepInstanceGroup(_ string) error { + return acctest.SweepZones((&autoscaling.API{}).Zones(), func(scwClient *scw.Client, zone scw.Zone) error { + autoscalingAPI := autoscaling.NewAPI(scwClient) + + logging.L.Debugf("sweeper: destroying the autoscaling instance groups in (%s)", zone) + + listInstanceGroups, err := autoscalingAPI.ListInstanceGroups( + &autoscaling.ListInstanceGroupsRequest{ + Zone: zone, + }, scw.WithAllPages()) + if err != nil { + return fmt.Errorf("error listing instancegroup in (%s) in sweeper: %w", zone, err) + } + + for _, instanceGroup := range listInstanceGroups.InstanceGroups { + err = autoscalingAPI.DeleteInstanceGroup(&autoscaling.DeleteInstanceGroupRequest{ + InstanceGroupID: instanceGroup.ID, + Zone: zone, + }) + if err != nil { + logging.L.Debugf("sweeper: error (%w)", err) + + return fmt.Errorf("error deleting instance group in sweeper: %w", err) + } + } + + return nil + }) +} + +func testSweepInstanceTemplate(_ string) error { + return acctest.SweepZones((&autoscaling.API{}).Zones(), func(scwClient *scw.Client, zone scw.Zone) error { + autoscalingAPI := autoscaling.NewAPI(scwClient) + + logging.L.Debugf("sweeper: destroying the autoscaling instance templates in (%s)", zone) + + listInstanceTemplates, err := autoscalingAPI.ListInstanceTemplates( + &autoscaling.ListInstanceTemplatesRequest{ + Zone: zone, + }, scw.WithAllPages()) + if err != nil { + return fmt.Errorf("error listing instance templates in (%s) in sweeper: %w", zone, err) + } + + for _, instanceTemplate := range listInstanceTemplates.InstanceTemplates { + err = autoscalingAPI.DeleteInstanceTemplate(&autoscaling.DeleteInstanceTemplateRequest{ + TemplateID: instanceTemplate.ID, + Zone: zone, + }) + if err != nil { + logging.L.Debugf("sweeper: error (%w)", err) + + return fmt.Errorf("error deleting instance template in sweeper: %w", err) + } + } + + return nil + }) +} + +func testSweepInstancePolicy(_ string) error { + return acctest.SweepZones((&autoscaling.API{}).Zones(), func(scwClient *scw.Client, zone scw.Zone) error { + autoscalingAPI := autoscaling.NewAPI(scwClient) + + logging.L.Debugf("sweeper: destroying the autoscaling instance policies in (%s)", zone) + + listInstancePolicies, err := autoscalingAPI.ListInstancePolicies(&autoscaling.ListInstancePoliciesRequest{ + Zone: zone, + }, scw.WithAllPages()) + if err != nil { + return fmt.Errorf("error listing instance policy in (%s) in sweeper: %w", zone, err) + } + + for _, instancePolicy := range listInstancePolicies.Policies { + err = autoscalingAPI.DeleteInstancePolicy(&autoscaling.DeleteInstancePolicyRequest{ + PolicyID: instancePolicy.ID, + Zone: zone, + }) + if err != nil { + logging.L.Debugf("sweeper: error (%w)", err) + + return fmt.Errorf("error deleting instance policy in sweeper: %w", err) + } + } + + return nil + }) +} diff --git a/internal/services/autoscaling/types.go b/internal/services/autoscaling/types.go new file mode 100644 index 0000000000..8f5fd9ccd4 --- /dev/null +++ b/internal/services/autoscaling/types.go @@ -0,0 +1,274 @@ +package autoscaling + +import ( + "sort" + "strconv" + + "github.com/hashicorp/terraform-plugin-sdk/v2/diag" + autoscaling "github.com/scaleway/scaleway-sdk-go/api/autoscaling/v1alpha1" + "github.com/scaleway/scaleway-sdk-go/scw" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/regional" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/locality/zonal" + "github.com/scaleway/terraform-provider-scaleway/v2/internal/types" +) + +func expandInstanceCapacity(raw any) *autoscaling.Capacity { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + capacity := &autoscaling.Capacity{ + MaxReplicas: uint32(rawMap["max_replicas"].(int)), + MinReplicas: uint32(rawMap["min_replicas"].(int)), + } + + if rawVal, ok := rawMap["cooldown_delay"].(int); ok { + capacity.CooldownDelay = &scw.Duration{Seconds: int64(rawVal)} + } + + return capacity +} + +func expandUpdateInstanceCapacity(raw any) *autoscaling.UpdateInstanceGroupRequestCapacity { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + capacity := &autoscaling.UpdateInstanceGroupRequestCapacity{} + + if rawVal, ok := rawMap["max_replicas"].(int); ok { + capacity.MaxReplicas = types.ExpandUint32Ptr(rawVal) + } + + if rawVal, ok := rawMap["min_replicas"].(int); ok { + capacity.MinReplicas = types.ExpandUint32Ptr(rawVal) + } + + if rawVal, ok := rawMap["cooldown_delay"].(int); ok { + capacity.CooldownDelay = &scw.Duration{Seconds: int64(rawVal)} + } + + return capacity +} + +func expandInstanceLoadBalancer(raw any) *autoscaling.Loadbalancer { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + + return &autoscaling.Loadbalancer{ + ID: locality.ExpandID(rawMap["id"].(string)), + PrivateNetworkID: locality.ExpandID(rawMap["private_network_id"].(string)), + BackendIDs: locality.ExpandIDs(rawMap["backend_ids"]), + } +} + +func expandPolicyMetric(raw any) *autoscaling.Metric { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + + var managedPtr *autoscaling.MetricManagedMetric + + if s := rawMap["managed_metric"].(string); s != "" { + m := autoscaling.MetricManagedMetric(s) + managedPtr = &m + } + + return &autoscaling.Metric{ + Name: rawMap["name"].(string), + ManagedMetric: managedPtr, + CockpitMetricName: types.ExpandStringPtr(rawMap["cockpit_metric_name"].(string)), + Operator: autoscaling.MetricOperator(rawMap["operator"].(string)), + Aggregate: autoscaling.MetricAggregate(rawMap["aggregate"].(string)), + SamplingRangeMin: uint32(rawMap["sampling_range_min"].(int)), + Threshold: float32(rawMap["threshold"].(int)), + } +} + +func expandUpdatePolicyMetric(raw any) *autoscaling.UpdateInstancePolicyRequestMetric { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + + var managedPtr *autoscaling.UpdateInstancePolicyRequestMetricManagedMetric + + if s := rawMap["managed_metric"].(string); s != "" { + m := autoscaling.UpdateInstancePolicyRequestMetricManagedMetric(s) + managedPtr = &m + } + + return &autoscaling.UpdateInstancePolicyRequestMetric{ + Name: types.ExpandStringPtr(rawMap["name"].(string)), + ManagedMetric: managedPtr, + CockpitMetricName: types.ExpandStringPtr(rawMap["cockpit_metric_name"].(string)), + Operator: autoscaling.UpdateInstancePolicyRequestMetricOperator(rawMap["operator"].(string)), + Aggregate: autoscaling.UpdateInstancePolicyRequestMetricAggregate(rawMap["aggregate"].(string)), + SamplingRangeMin: types.ExpandUint32Ptr(rawMap["sampling_range_min"].(int)), + Threshold: scw.Float32Ptr(float32(rawMap["sampling_threshold"].(int))), + } +} + +func expandUpdateInstanceLoadBalancer(raw any) *autoscaling.UpdateInstanceGroupRequestLoadbalancer { + if raw == nil || len(raw.([]any)) != 1 { + return nil + } + + rawMap := raw.([]any)[0].(map[string]any) + lb := &autoscaling.UpdateInstanceGroupRequestLoadbalancer{} + + if rawVal, ok := rawMap["backend_ids"].(int); ok { + lb.BackendIDs = types.ExpandStringsPtr(locality.ExpandIDs(rawVal)) + } + + return lb +} + +func expandVolumes(rawVols []any) map[string]*autoscaling.VolumeInstanceTemplate { + vols := make(map[string]*autoscaling.VolumeInstanceTemplate, len(rawVols)) + + for i, raw := range rawVols { + m := raw.(map[string]any) + vt := &autoscaling.VolumeInstanceTemplate{ + Name: m["name"].(string), + Boot: m["boot"].(bool), + VolumeType: autoscaling.VolumeInstanceTemplateVolumeType(m["volume_type"].(string)), + Tags: types.ExpandStrings(m["tags"].([]any)), + PerfIops: types.ExpandUint32Ptr(m["perf_iops"].(int)), + } + + if slice := m["from_empty"].([]any); len(slice) > 0 && slice[0] != nil { + inner := slice[0].(map[string]any) + sizeGB := inner["size"].(int) + vt.FromEmpty = &autoscaling.VolumeInstanceTemplateFromEmpty{ + Size: scw.Size(uint64(sizeGB) * uint64(scw.GB)), + } + } + + if slice := m["from_snapshot"].([]any); len(slice) > 0 && slice[0] != nil { + inner := slice[0].(map[string]any) + snapshot := &autoscaling.VolumeInstanceTemplateFromSnapshot{ + SnapshotID: locality.ExpandID(inner["snapshot_id"].(string)), + } + + if sz, ok := inner["size"].(int); ok && sz > 0 { + snapshot.Size = scw.SizePtr(scw.Size(uint64(sz) * uint64(scw.GB))) + } + + vt.FromSnapshot = snapshot + } + + vols[strconv.Itoa(i)] = vt + } + + return vols +} + +func flattenInstanceCapacity(capacity *autoscaling.Capacity) any { + if capacity == nil { + return nil + } + + return []map[string]any{ + { + "max_replicas": capacity.MaxReplicas, + "min_replicas": capacity.MinReplicas, + "cooldown_delay": capacity.CooldownDelay.Seconds, + }, + } +} + +func flattenInstanceLoadBalancer(lb *autoscaling.Loadbalancer, zone scw.Zone) any { + if lb == nil { + return nil + } + + pnRegion, err := zone.Region() + if err != nil { + return diag.FromErr(err) + } + + return []map[string]any{ + { + "id": zonal.NewIDString(zone, lb.ID), + "backend_ids": zonal.NewIDStrings(zone, lb.BackendIDs), + "private_network_id": regional.NewIDString(pnRegion, lb.PrivateNetworkID), + }, + } +} + +func flattenPolicyMetric(metric *autoscaling.Metric) any { + if metric == nil { + return nil + } + + var managedMetric string + if metric.ManagedMetric != nil { + managedMetric = metric.ManagedMetric.String() + } + + return []map[string]any{ + { + "name": metric.Name, + "managed_metric": managedMetric, + "cockpit_metric_name": types.FlattenStringPtr(metric.CockpitMetricName), + "operator": metric.Operator.String(), + "aggregate": metric.Aggregate.String(), + "sampling_range_min": metric.SamplingRangeMin, + "threshold": metric.Threshold, + }, + } +} + +func flattenVolumes(zone scw.Zone, volMap map[string]*autoscaling.VolumeInstanceTemplate) []any { + keys := make([]string, 0, len(volMap)) + for k := range volMap { + keys = append(keys, k) + } + + sort.Strings(keys) + + volumes := make([]any, len(keys)) + + for i, k := range keys { + v := volMap[k] + m := map[string]any{ + "name": v.Name, + "boot": v.Boot, + "volume_type": v.VolumeType.String(), + "tags": v.Tags, + "perf_iops": types.FlattenUint32Ptr(v.PerfIops), + } + + if v.FromEmpty != nil { + m["from_empty"] = []any{map[string]any{ + "size": int(v.FromEmpty.Size / scw.GB), + }} + } + + if v.FromSnapshot != nil { + inner := map[string]any{ + "snapshot_id": zonal.NewIDString(zone, v.FromSnapshot.SnapshotID), + } + + if v.FromSnapshot.Size != nil { + inner["size"] = int(*v.FromSnapshot.Size / scw.GB) + } + + m["from_snapshot"] = []any{inner} + } + + volumes[i] = m + } + + return volumes +} diff --git a/internal/services/baremetal/types.go b/internal/services/baremetal/types.go index 30b1c3bf7e..c8da498412 100644 --- a/internal/services/baremetal/types.go +++ b/internal/services/baremetal/types.go @@ -196,7 +196,7 @@ func flattenPrivateNetworks(region scw.Region, privateNetworks []*baremetalV3.Se flattenedPrivateNetworks = append(flattenedPrivateNetworks, map[string]any{ "id": regional.NewIDString(region, privateNetwork.PrivateNetworkID), "mapping_id": regional.NewIDString(region, privateNetwork.ID), - "ipam_ip_ids": regional.NewRegionalIDs(region, privateNetwork.IpamIPIDs), + "ipam_ip_ids": regional.NewIDStrings(region, privateNetwork.IpamIPIDs), "vlan": types.FlattenUint32Ptr(privateNetwork.Vlan), "status": privateNetwork.Status, "created_at": types.FlattenTime(privateNetwork.CreatedAt), diff --git a/internal/services/instance/helpers_instance.go b/internal/services/instance/helpers_instance.go index e9d2ad9a2e..f7f0c79d0c 100644 --- a/internal/services/instance/helpers_instance.go +++ b/internal/services/instance/helpers_instance.go @@ -552,3 +552,50 @@ func getServerProjectID(ctx context.Context, api *instance.API, zone scw.Zone, s return server.Server.Project, nil } + +func DeleteASGServers( + ctx context.Context, + api *instance.API, + zone scw.Zone, + groupID string, + timeout time.Duration, +) error { + resp, err := api.ListServers(&instance.ListServersRequest{ + Zone: zone, + Name: types.ExpandStringPtr(groupID), + }, scw.WithContext(ctx)) + if err != nil { + return err + } + + for _, srv := range resp.Servers { + switch srv.State { + case instance.ServerStateRunning: + if _, err = api.ServerAction(&instance.ServerActionRequest{ + Zone: zone, + ServerID: srv.ID, + Action: instance.ServerActionTerminate, + }, scw.WithContext(ctx)); err != nil { + return err + } + case instance.ServerStateStopped, instance.ServerStateStoppedInPlace: + if err = api.DeleteServer(&instance.DeleteServerRequest{ + Zone: zone, + ServerID: srv.ID, + }, scw.WithContext(ctx)); err != nil { + return err + } + } + + _, err := api.WaitForServer(&instance.WaitForServerRequest{ + Zone: zone, + ServerID: srv.ID, + Timeout: scw.TimeDurationPtr(timeout), + }, scw.WithContext(ctx)) + if err != nil && !httperrors.Is404(err) { + return err + } + } + + return nil +} diff --git a/internal/services/lb/types.go b/internal/services/lb/types.go index c22e0095fd..9b380168a4 100644 --- a/internal/services/lb/types.go +++ b/internal/services/lb/types.go @@ -45,7 +45,7 @@ func flattenPrivateNetworkConfigs(privateNetworks []*lb.PrivateNetwork) any { "status": pn.Status.String(), "zone": pn.LB.Zone.String(), "static_config": flattenLbPrivateNetworkStaticConfig(pn.StaticConfig), //nolint:staticcheck - "ipam_ids": regional.NewRegionalIDs(pnRegion, pn.IpamIDs), + "ipam_ids": regional.NewIDStrings(pnRegion, pn.IpamIDs), }) } From cb2cf03a84ac4d465df562d24f44a90cd0dd62ea Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 30 Jun 2025 17:33:21 +0200 Subject: [PATCH 7/8] fix --- internal/services/vpc/{testdata => }/testfuncs/checks.go | 0 internal/services/vpc/{testdata => }/testfuncs/sweep.go | 0 2 files changed, 0 insertions(+), 0 deletions(-) rename internal/services/vpc/{testdata => }/testfuncs/checks.go (100%) rename internal/services/vpc/{testdata => }/testfuncs/sweep.go (100%) diff --git a/internal/services/vpc/testdata/testfuncs/checks.go b/internal/services/vpc/testfuncs/checks.go similarity index 100% rename from internal/services/vpc/testdata/testfuncs/checks.go rename to internal/services/vpc/testfuncs/checks.go diff --git a/internal/services/vpc/testdata/testfuncs/sweep.go b/internal/services/vpc/testfuncs/sweep.go similarity index 100% rename from internal/services/vpc/testdata/testfuncs/sweep.go rename to internal/services/vpc/testfuncs/sweep.go From 56f95d133fdc190499bb82f01bc1fbc86c4ceaba Mon Sep 17 00:00:00 2001 From: Yacine FODIL Date: Mon, 30 Jun 2025 17:55:29 +0200 Subject: [PATCH 8/8] re-update --- ...ource-ipam-ips-redis-cluster.cassette.yaml | 1115 ++++--- ...ta-source-ipamip-instance-lb.cassette.yaml | 1607 +++++----- .../data-source-ipamip-instance.cassette.yaml | 1646 +++++------ .../data-source-ipamipid.cassette.yaml | 315 +- ...amip-with-standalone-address.cassette.yaml | 261 +- ...tance-private-network-update.cassette.yaml | 1582 +++++----- .../vpc-disable-routing.cassette.yaml | 141 +- .../vpc-private-network-basic.cassette.yaml | 235 +- .../testdata/vpc-route-basic.cassette.yaml | 2606 +++++++++-------- 9 files changed, 4501 insertions(+), 5007 deletions(-) diff --git a/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml b/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml index 4650f3553b..3f95f240d2 100644 --- a/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipam-ips-redis-cluster.cassette.yaml @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 394 uncompressed: false - body: '{"message":"internal error"}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":false,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.170690Z"}' headers: Content-Length: - - "28" + - "394" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,29 +48,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1882d99-5251-4c04-91b2-ac3548af49b7 - status: 500 Internal Server Error - code: 500 - duration: 160.841875ms + - 2903435d-cbbd-4fb5-b4eb-d0ba83d317bd + status: 200 OK + code: 200 + duration: 244.853916ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 102 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"my vpc","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -78,20 +78,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 394 + content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":false,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.598920Z"}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":true,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.231785Z"}' headers: Content-Length: - - "394" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,30 +99,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8864abee-632b-4db8-a7e0-e709a423502e + - c74d7d5a-22f7-4622-a99c-8695f6c841d2 status: 200 OK code: 200 - duration: 60.491041ms + duration: 42.865917ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 2 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8/enable-custom-routes-propagation - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -131,7 +129,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":true,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.231785Z"}' headers: Content-Length: - "393" @@ -140,9 +138,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -150,48 +148,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7bb04a00-ffc0-4f1e-a0e7-6a13f152ef28 + - c291014f-c8bf-4d2f-8578-c2314ec177c7 status: 200 OK code: 200 - duration: 41.987292ms + duration: 24.354833ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 212 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-thirsty-darwin","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' + body: '{"created_at":"2025-06-30T15:48:37.324689Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"1d83b574-1e39-4458-a6af-a413dc779f80","name":"tf-pn-thirsty-darwin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:48:37.324689Z","id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"},{"created_at":"2025-06-30T15:48:37.324689Z","id":"3b8292e5-1ba2-48ba-ab51-85be2def50b0","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c535::/64","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}],"tags":[],"updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}' headers: Content-Length: - - "393" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -199,50 +199,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54e4e11c-907e-43b4-81e8-12ce51ae3984 + - e9b5518a-134b-4a3d-aede-86659d435e50 status: 200 OK code: 200 - duration: 26.1415ms + duration: 547.501ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 213 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-gracious-shamir","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d83b574-1e39-4458-a6af-a413dc779f80 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' + body: '{"created_at":"2025-06-30T15:48:37.324689Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"1d83b574-1e39-4458-a6af-a413dc779f80","name":"tf-pn-thirsty-darwin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:48:37.324689Z","id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"},{"created_at":"2025-06-30T15:48:37.324689Z","id":"3b8292e5-1ba2-48ba-ab51-85be2def50b0","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c535::/64","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}],"tags":[],"updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}' headers: Content-Length: - - "1067" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:48:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -250,48 +248,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c89eb0e4-19bc-4fa8-bfa3-b562dd9451e9 + - 7ea0eecf-969d-473f-b5a4-92beeb2d9b8a status: 200 OK code: 200 - duration: 598.585334ms + duration: 28.037791ms - id: 5 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 397 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test_redis_endpoints","version":"7.0.5","tags":null,"node_type":"RED1-XS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","cluster_size":3,"acl_rules":null,"endpoints":[{"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","service_ips":null,"ipam_config":{}}}],"tls_enabled":false,"cluster_settings":null}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 - method: GET + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 707 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1067" + - "707" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:48:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -299,30 +299,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c6799d2-ccb2-47e6-b24a-467267dc0c51 + - 0db47c8d-b088-4642-9bbd-f4c4b79d7a68 status: 200 OK code: 200 - duration: 37.087292ms + duration: 4.382878583s - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 397 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test_redis_endpoints","version":"7.0.5","tags":null,"node_type":"RED1-XS","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","cluster_size":3,"acl_rules":null,"endpoints":[{"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","service_ips":null,"ipam_config":{}}}],"tls_enabled":false,"cluster_settings":null}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters - method: POST + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -331,7 +329,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -340,9 +338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:16 GMT + - Mon, 30 Jun 2025 15:48:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -350,10 +348,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c2ecded-44bd-4b83-9212-6f6f281c7370 + - a3fdba10-537a-4ecf-a91d-e39b608710b1 status: 200 OK code: 200 - duration: 6.090061042s + duration: 114.462125ms - id: 7 request: proto: HTTP/1.1 @@ -370,7 +368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -380,7 +378,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -389,9 +387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:16 GMT + - Mon, 30 Jun 2025 15:48:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -399,10 +397,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c0de961-8df0-4454-a3e7-579fbc96d7f5 + - 0ead70b5-5e20-4819-81b7-97964bd2695a status: 200 OK code: 200 - duration: 235.834917ms + duration: 113.656958ms - id: 8 request: proto: HTTP/1.1 @@ -419,7 +417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -429,7 +427,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -438,9 +436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -448,10 +446,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d59e99e9-1985-483b-9f01-2c98f6a50a9f + - 7d6305d4-29e3-4db3-81bd-23c86780f451 status: 200 OK code: 200 - duration: 108.216833ms + duration: 212.833166ms - id: 9 request: proto: HTTP/1.1 @@ -468,7 +466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -478,7 +476,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -487,9 +485,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:26 GMT + - Mon, 30 Jun 2025 15:48:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -497,10 +495,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13e6a9ca-1465-412a-8d2a-f2c3b47c58c7 + - cd5b1c32-fdc4-4c45-a443-00ecc9116a48 status: 200 OK code: 200 - duration: 110.206584ms + duration: 136.295417ms - id: 10 request: proto: HTTP/1.1 @@ -517,7 +515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -527,7 +525,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -536,9 +534,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:32 GMT + - Mon, 30 Jun 2025 15:49:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -546,10 +544,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5cbfc6c-f493-4c40-b4a5-a477bebddd05 + - c2b474d4-244c-4bbe-bdfc-e946cc074658 status: 200 OK code: 200 - duration: 144.023667ms + duration: 116.943417ms - id: 11 request: proto: HTTP/1.1 @@ -566,7 +564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -576,7 +574,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -585,9 +583,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:37 GMT + - Mon, 30 Jun 2025 15:49:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -595,10 +593,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5e396b2-35b1-44fa-86b9-4a6a211c6ab0 + - 0fe63246-5060-49e0-975d-ceb6a111ace0 status: 200 OK code: 200 - duration: 117.248333ms + duration: 133.016458ms - id: 12 request: proto: HTTP/1.1 @@ -615,7 +613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -625,7 +623,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -634,9 +632,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:42 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -644,10 +642,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58b9e777-e416-4a28-8138-c3fb66f45acc + - 636d458a-ceaf-4ffb-862d-f7da42cde049 status: 200 OK code: 200 - duration: 119.151667ms + duration: 90.225667ms - id: 13 request: proto: HTTP/1.1 @@ -664,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -674,7 +672,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -683,9 +681,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:49:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -693,10 +691,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3150c702-1d4b-45d0-b0e1-aafc0b9d0425 + - 8972d765-f434-4afd-8f16-3778fad4b3f2 status: 200 OK code: 200 - duration: 94.736458ms + duration: 106.039375ms - id: 14 request: proto: HTTP/1.1 @@ -713,7 +711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -723,7 +721,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -732,9 +730,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:52 GMT + - Mon, 30 Jun 2025 15:49:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -742,10 +740,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fd8016c-677b-47bb-b6ad-ef6b1a6ba89b + - a34128c8-28f2-49a2-b2d7-47671f805538 status: 200 OK code: 200 - duration: 114.803875ms + duration: 114.383958ms - id: 15 request: proto: HTTP/1.1 @@ -762,7 +760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -772,7 +770,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -781,9 +779,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:57 GMT + - Mon, 30 Jun 2025 15:49:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -791,10 +789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54c8b6b3-a2cb-4a5b-93b3-63d22add3dad + - 4595ceda-b4cd-4e3a-8e39-360dbe85e87d status: 200 OK code: 200 - duration: 118.271208ms + duration: 120.945166ms - id: 16 request: proto: HTTP/1.1 @@ -811,7 +809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -821,7 +819,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -830,9 +828,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:02 GMT + - Mon, 30 Jun 2025 15:49:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -840,10 +838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7ad974d-a873-4d29-bccd-1211ed8b8f0d + - 25a24f74-80cb-4516-a628-2c72d0aecd1e status: 200 OK code: 200 - duration: 130.995ms + duration: 121.030583ms - id: 17 request: proto: HTTP/1.1 @@ -860,7 +858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -870,7 +868,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -879,9 +877,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:07 GMT + - Mon, 30 Jun 2025 15:49:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -889,10 +887,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4189f881-e102-40b2-9066-ebd7dba95c92 + - 59ffa900-34e1-4bdd-b060-63644a2690c6 status: 200 OK code: 200 - duration: 173.110083ms + duration: 120.273875ms - id: 18 request: proto: HTTP/1.1 @@ -909,7 +907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -919,7 +917,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -928,9 +926,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:13 GMT + - Mon, 30 Jun 2025 15:49:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -938,10 +936,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7513d250-e1de-4586-8581-c0a07d1957c8 + - e2579d60-e8a6-4670-a0a6-91ce8896b660 status: 200 OK code: 200 - duration: 118.72625ms + duration: 150.584333ms - id: 19 request: proto: HTTP/1.1 @@ -958,7 +956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -968,7 +966,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -977,9 +975,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:18 GMT + - Mon, 30 Jun 2025 15:49:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -987,10 +985,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b641dcdb-7771-4a18-8deb-0d4cd7d275a7 + - 7562cbc3-c12d-4dd3-b0be-06904377fbd3 status: 200 OK code: 200 - duration: 691.609833ms + duration: 142.509083ms - id: 20 request: proto: HTTP/1.1 @@ -1007,7 +1005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1017,7 +1015,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1026,9 +1024,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:49:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1036,10 +1034,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a202246a-df9c-4de0-b7fc-85744a83825b + - 24a10c4d-aacc-4be3-9ff3-11f325c8d9fc status: 200 OK code: 200 - duration: 99.669791ms + duration: 127.202417ms - id: 21 request: proto: HTTP/1.1 @@ -1056,7 +1054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1066,7 +1064,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1075,9 +1073,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:28 GMT + - Mon, 30 Jun 2025 15:49:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1085,10 +1083,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04f83c7b-61de-4a77-89ae-3c64d28a5e48 + - ee9120cb-678e-40a0-86e8-33f3fdc29a02 status: 200 OK code: 200 - duration: 96.303792ms + duration: 113.719333ms - id: 22 request: proto: HTTP/1.1 @@ -1105,7 +1103,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1115,7 +1113,7 @@ interactions: trailer: {} content_length: 707 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "707" @@ -1124,9 +1122,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:34 GMT + - Mon, 30 Jun 2025 15:50:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1134,10 +1132,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6922037-e257-4527-a5d3-4a63ac7e6c27 + - 2b746a7b-9420-43dd-882f-0922832680d5 status: 200 OK code: 200 - duration: 92.727875ms + duration: 111.591167ms - id: 23 request: proto: HTTP/1.1 @@ -1154,7 +1152,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1162,20 +1160,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 707 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "707" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:39 GMT + - Mon, 30 Jun 2025 15:50:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1183,10 +1181,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3469b61b-03ae-4cab-a2cc-1ff6ef38c2c5 + - a8cc855a-35c2-4b79-aa70-4704b0c747f8 status: 200 OK code: 200 - duration: 104.322292ms + duration: 141.168792ms - id: 24 request: proto: HTTP/1.1 @@ -1203,7 +1201,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1211,20 +1209,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 707 + content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"provisioning","tags":[],"tls_enabled":false,"updated_at":null,"upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "707" + - "732" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:44 GMT + - Mon, 30 Jun 2025 15:50:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1232,10 +1230,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f571586b-423a-4061-a345-bc3624673bbb + - 2db839fa-a37a-4002-8f74-616f7f7aea75 status: 200 OK code: 200 - duration: 121.778875ms + duration: 109.137375ms - id: 25 request: proto: HTTP/1.1 @@ -1252,7 +1250,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1262,7 +1260,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1271,9 +1269,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:49 GMT + - Mon, 30 Jun 2025 15:50:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1281,10 +1279,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - adfbb6b4-65eb-41e3-b5df-de494c4800c9 + - 5a96ebe6-5f21-4514-9b64-bd2553189b04 status: 200 OK code: 200 - duration: 121.830208ms + duration: 114.635833ms - id: 26 request: proto: HTTP/1.1 @@ -1301,7 +1299,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1311,7 +1309,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1320,9 +1318,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:54 GMT + - Mon, 30 Jun 2025 15:50:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1330,10 +1328,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c123dd5-a3a8-4905-bb34-3d856344f0c5 + - 7cb2cbe1-b1f6-43f1-87b6-01f120c7135f status: 200 OK code: 200 - duration: 231.354625ms + duration: 116.808917ms - id: 27 request: proto: HTTP/1.1 @@ -1350,7 +1348,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1360,7 +1358,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1369,9 +1367,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:59 GMT + - Mon, 30 Jun 2025 15:50:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1379,10 +1377,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 50163019-41fc-4a27-8d46-7433be652765 + - 524e34fc-859c-48c6-8ed7-49c62f7a31f6 status: 200 OK code: 200 - duration: 113.975ms + duration: 174.616875ms - id: 28 request: proto: HTTP/1.1 @@ -1399,7 +1397,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1409,7 +1407,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1418,9 +1416,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:04 GMT + - Mon, 30 Jun 2025 15:50:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1428,10 +1426,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d94930a4-b117-4d9f-99d6-2561e3d3cad9 + - 7a4c315b-c2dd-444f-9beb-9af3111463c9 status: 200 OK code: 200 - duration: 114.051083ms + duration: 123.0165ms - id: 29 request: proto: HTTP/1.1 @@ -1448,7 +1446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1458,7 +1456,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1467,9 +1465,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:09 GMT + - Mon, 30 Jun 2025 15:50:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1477,10 +1475,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be8af18f-b217-48ae-8b72-c7dfd59f4a9e + - 0bba808b-b652-40c3-9f6a-7270b22d010d status: 200 OK code: 200 - duration: 110.766958ms + duration: 127.013875ms - id: 30 request: proto: HTTP/1.1 @@ -1497,7 +1495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1507,7 +1505,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1516,9 +1514,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:15 GMT + - Mon, 30 Jun 2025 15:50:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1526,10 +1524,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6ee2815a-b926-425b-a87c-f676eeb577a0 + - ebe33194-4684-4be5-b316-19d5d922fb0e status: 200 OK code: 200 - duration: 102.63975ms + duration: 118.435792ms - id: 31 request: proto: HTTP/1.1 @@ -1546,7 +1544,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1556,7 +1554,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1565,9 +1563,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:20 GMT + - Mon, 30 Jun 2025 15:50:50 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1575,10 +1573,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20c176ab-ff5a-4ead-82cb-754e1c550f53 + - 0f805991-5af9-4d1e-9642-46d6342dae9a status: 200 OK code: 200 - duration: 133.411042ms + duration: 119.099167ms - id: 32 request: proto: HTTP/1.1 @@ -1595,7 +1593,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1605,7 +1603,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1614,9 +1612,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:25 GMT + - Mon, 30 Jun 2025 15:50:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1624,10 +1622,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15667a0d-688f-49f1-957e-02663ac96091 + - 0d4ba932-d9c2-4f19-a32e-2c6965a4c034 status: 200 OK code: 200 - duration: 135.568208ms + duration: 117.125459ms - id: 33 request: proto: HTTP/1.1 @@ -1644,7 +1642,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1654,7 +1652,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1663,9 +1661,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:30 GMT + - Mon, 30 Jun 2025 15:51:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1673,10 +1671,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f03f154b-f9e8-4b42-86f1-33404fc9c6b7 + - 8729a7ba-8c75-473c-b171-a0f55c126a22 status: 200 OK code: 200 - duration: 120.968875ms + duration: 120.585584ms - id: 34 request: proto: HTTP/1.1 @@ -1693,7 +1691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1703,7 +1701,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1712,9 +1710,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:35 GMT + - Mon, 30 Jun 2025 15:51:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1722,10 +1720,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2e6a5ce-4756-407b-b04c-e4ca22bb1c7c + - cfae9f83-256c-4380-96cc-398bc11a3a96 status: 200 OK code: 200 - duration: 195.427416ms + duration: 109.319792ms - id: 35 request: proto: HTTP/1.1 @@ -1742,7 +1740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1752,7 +1750,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1761,9 +1759,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:40 GMT + - Mon, 30 Jun 2025 15:51:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1771,10 +1769,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8bb44533-54c3-4f10-a9cd-bf2f43f34996 + - 25c3a142-0cab-412f-bfd8-6beb04e664ed status: 200 OK code: 200 - duration: 111.456958ms + duration: 240.091041ms - id: 36 request: proto: HTTP/1.1 @@ -1791,7 +1789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1801,7 +1799,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1810,9 +1808,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:45 GMT + - Mon, 30 Jun 2025 15:51:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1820,10 +1818,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 96ed1d4c-5d37-45d6-b3f9-dc50bcc969c1 + - 8e01a6ab-348b-4864-bce4-0cd2e2e5017a status: 200 OK code: 200 - duration: 124.125417ms + duration: 130.034875ms - id: 37 request: proto: HTTP/1.1 @@ -1840,7 +1838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1850,7 +1848,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1859,9 +1857,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:50 GMT + - Mon, 30 Jun 2025 15:51:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1869,10 +1867,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0890efa5-5e11-485d-92a5-fd53a5b4ac14 + - d23c650d-693b-42f7-b3c1-23249b608a8e status: 200 OK code: 200 - duration: 94.061875ms + duration: 114.01ms - id: 38 request: proto: HTTP/1.1 @@ -1889,7 +1887,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1899,7 +1897,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1908,9 +1906,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:04:56 GMT + - Mon, 30 Jun 2025 15:51:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1918,10 +1916,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ed07270-1c5e-42ac-875a-19957c7bd432 + - 70e8d879-6237-4c37-a003-c99598eea6a8 status: 200 OK code: 200 - duration: 122.806625ms + duration: 107.138208ms - id: 39 request: proto: HTTP/1.1 @@ -1938,7 +1936,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1948,7 +1946,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -1957,9 +1955,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:01 GMT + - Mon, 30 Jun 2025 15:51:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1967,10 +1965,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4c8e1db-db94-40d1-89bc-a7f01c6adbfd + - 42a49b88-d9e4-4e3d-9367-772f9d9b9ceb status: 200 OK code: 200 - duration: 219.124209ms + duration: 119.674125ms - id: 40 request: proto: HTTP/1.1 @@ -1987,7 +1985,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -1997,7 +1995,7 @@ interactions: trailer: {} content_length: 732 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:50:06.672105Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "732" @@ -2006,9 +2004,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:06 GMT + - Mon, 30 Jun 2025 15:51:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2016,10 +2014,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0d2a1e2d-a188-44bd-91d2-034c7cb1b3cb + - 7635e491-c241-4105-8f6c-f066da55a86a status: 200 OK code: 200 - duration: 111.917083ms + duration: 128.27225ms - id: 41 request: proto: HTTP/1.1 @@ -2036,7 +2034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -2044,20 +2042,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 732 + content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"initializing","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:03:46.985673Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "732" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:11 GMT + - Mon, 30 Jun 2025 15:51:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2065,10 +2063,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c973479e-c81f-44d6-a2a0-ad69bedd6754 + - 9bbed59a-9af0-4b1d-921c-ebfdb9834900 status: 200 OK code: 200 - duration: 113.724917ms + duration: 104.604209ms - id: 42 request: proto: HTTP/1.1 @@ -2085,7 +2083,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -2095,7 +2093,7 @@ interactions: trailer: {} content_length: 725 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "725" @@ -2104,9 +2102,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:16 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2114,10 +2112,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43216a34-cf2a-4ac6-99b5-f38a87d5ed3f + - bd41d52e-92fe-49f4-9cd7-ada3f77ef62f status: 200 OK code: 200 - duration: 119.093792ms + duration: 112.512ms - id: 43 request: proto: HTTP/1.1 @@ -2134,7 +2132,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=1d83b574-1e39-4458-a6af-a413dc779f80&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2142,20 +2140,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 725 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - - "725" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:16 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2163,10 +2161,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 588ca370-8175-4ade-874f-099e4f725b54 + - 75cabe51-4228-41e5-839b-f3db63afbab8 status: 200 OK code: 200 - duration: 129.135167ms + duration: 56.111166ms - id: 44 request: proto: HTTP/1.1 @@ -2183,7 +2181,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242 method: GET response: proto: HTTP/2.0 @@ -2191,20 +2189,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1546 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":true,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.231785Z"}' headers: Content-Length: - - "1546" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:16 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2212,10 +2210,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0415cb0-8206-4704-8427-252c5ddfe993 + - 4471f68e-4a13-41c4-9dbf-d56bb4e2fdfb status: 200 OK code: 200 - duration: 50.0755ms + duration: 53.169291ms - id: 45 request: proto: HTTP/1.1 @@ -2232,7 +2230,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d83b574-1e39-4458-a6af-a413dc779f80 method: GET response: proto: HTTP/2.0 @@ -2240,20 +2238,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' + body: '{"created_at":"2025-06-30T15:48:37.324689Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"1d83b574-1e39-4458-a6af-a413dc779f80","name":"tf-pn-thirsty-darwin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:48:37.324689Z","id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"},{"created_at":"2025-06-30T15:48:37.324689Z","id":"3b8292e5-1ba2-48ba-ab51-85be2def50b0","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c535::/64","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}],"tags":[],"updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}' headers: Content-Length: - - "393" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2261,10 +2259,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e475778b-ef9f-4ffd-a965-3d658c3ccf64 + - dc98d819-28d0-4600-b76d-3d10235f064d status: 200 OK code: 200 - duration: 29.213042ms + duration: 26.28925ms - id: 46 request: proto: HTTP/1.1 @@ -2281,7 +2279,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -2289,20 +2287,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 725 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1067" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2310,10 +2308,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1ffb072-d516-404c-aa77-ae79d0e0c57e + - 6d17a764-492f-4163-9434-dd004ef9e0fd status: 200 OK code: 200 - duration: 32.366458ms + duration: 94.601ms - id: 47 request: proto: HTTP/1.1 @@ -2330,7 +2328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=1d83b574-1e39-4458-a6af-a413dc779f80&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2338,20 +2336,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 725 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - - "725" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2359,10 +2357,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95219e8c-a16c-4635-b2bf-3a0cad188e7a + - 64d6a638-1eab-425c-b3db-cef0e3c4ca68 status: 200 OK code: 200 - duration: 101.652958ms + duration: 53.309958ms - id: 48 request: proto: HTTP/1.1 @@ -2379,7 +2377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242 method: GET response: proto: HTTP/2.0 @@ -2387,20 +2385,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1546 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":true,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.231785Z"}' headers: Content-Length: - - "1546" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2408,10 +2406,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eb8db476-a4f5-4d2d-b969-b45cf724c157 + - 3e5ab582-2b51-4ffd-a9c1-8ba577115df0 status: 200 OK code: 200 - duration: 58.767792ms + duration: 41.753709ms - id: 49 request: proto: HTTP/1.1 @@ -2428,7 +2426,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d83b574-1e39-4458-a6af-a413dc779f80 method: GET response: proto: HTTP/2.0 @@ -2436,20 +2434,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' + body: '{"created_at":"2025-06-30T15:48:37.324689Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"1d83b574-1e39-4458-a6af-a413dc779f80","name":"tf-pn-thirsty-darwin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:48:37.324689Z","id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"},{"created_at":"2025-06-30T15:48:37.324689Z","id":"3b8292e5-1ba2-48ba-ab51-85be2def50b0","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c535::/64","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}],"tags":[],"updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}' headers: Content-Length: - - "393" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2457,10 +2455,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bd7e2ce1-fdff-469c-a54c-97e45a75100f + - cfbdee35-3c88-49bb-8598-6f585daea498 status: 200 OK code: 200 - duration: 28.51925ms + duration: 31.921875ms - id: 50 request: proto: HTTP/1.1 @@ -2477,7 +2475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -2485,20 +2483,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 725 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1067" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2506,10 +2504,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f2b3dde-1e8c-417f-b701-77c86a7301a3 + - 5d882dea-2ffb-49d4-9a95-78b642eeb67f status: 200 OK code: 200 - duration: 30.960791ms + duration: 112.6355ms - id: 51 request: proto: HTTP/1.1 @@ -2526,7 +2524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=1d83b574-1e39-4458-a6af-a413dc779f80&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2534,20 +2532,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 725 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - - "725" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2555,10 +2553,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 10d2a2d9-dfc9-4645-b1f9-83fc5d2500cb + - ce210c4c-1316-4e63-93d5-88a89306213d status: 200 OK code: 200 - duration: 127.097291ms + duration: 54.002458ms - id: 52 request: proto: HTTP/1.1 @@ -2575,7 +2573,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2585,7 +2583,7 @@ interactions: trailer: {} content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - "1546" @@ -2594,9 +2592,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,10 +2602,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 04930359-2087-4f24-98e8-2274da605dc9 + - df882191-4891-4ff9-bfbd-f53feeca5999 status: 200 OK code: 200 - duration: 60.948125ms + duration: 51.87425ms - id: 53 request: proto: HTTP/1.1 @@ -2624,7 +2622,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2634,7 +2632,7 @@ interactions: trailer: {} content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - "1546" @@ -2643,9 +2641,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,10 +2651,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 855d6ffd-66c5-4519-a81c-671c14ff792a + - ec59feec-6705-4f62-8889-b33ae06fbdbb status: 200 OK code: 200 - duration: 58.458125ms + duration: 55.219417ms - id: 54 request: proto: HTTP/1.1 @@ -2673,7 +2671,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2683,7 +2681,7 @@ interactions: trailer: {} content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - "1546" @@ -2692,9 +2690,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:17 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2702,10 +2700,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5d0e5cc7-38da-40ec-a6c3-5a49440367a8 + - a679d7c5-0755-4a95-87c7-2f02436e32ee status: 200 OK code: 200 - duration: 52.851583ms + duration: 57.45925ms - id: 55 request: proto: HTTP/1.1 @@ -2722,7 +2720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242 method: GET response: proto: HTTP/2.0 @@ -2730,20 +2728,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1546 + content_length: 393 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"created_at":"2025-06-30T15:48:37.170690Z","custom_routes_propagation_enabled":true,"id":"42594341-255b-4ca3-8ca5-3875f593a242","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-06-30T15:48:37.231785Z"}' headers: Content-Length: - - "1546" + - "393" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2751,10 +2749,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a269e24-d5a6-494a-afde-e3182a994049 + - 562d3e14-8cf7-4fce-b666-6db726a7fe2b status: 200 OK code: 200 - duration: 48.050583ms + duration: 29.163709ms - id: 56 request: proto: HTTP/1.1 @@ -2771,7 +2769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d83b574-1e39-4458-a6af-a413dc779f80 method: GET response: proto: HTTP/2.0 @@ -2779,20 +2777,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 393 + content_length: 1066 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.598920Z","custom_routes_propagation_enabled":true,"id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8","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-06-30T15:02:09.649977Z"}' + body: '{"created_at":"2025-06-30T15:48:37.324689Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"1d83b574-1e39-4458-a6af-a413dc779f80","name":"tf-pn-thirsty-darwin","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:48:37.324689Z","id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"},{"created_at":"2025-06-30T15:48:37.324689Z","id":"3b8292e5-1ba2-48ba-ab51-85be2def50b0","private_network_id":"1d83b574-1e39-4458-a6af-a413dc779f80","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:c535::/64","updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}],"tags":[],"updated_at":"2025-06-30T15:48:37.324689Z","vpc_id":"42594341-255b-4ca3-8ca5-3875f593a242"}' headers: Content-Length: - - "393" + - "1066" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2800,10 +2798,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c85e041b-f9c4-45d2-984e-716e6c27b4ed + - 80b093cc-cc2d-408d-a217-34f67183b1ea status: 200 OK code: 200 - duration: 29.525416ms + duration: 26.407417ms - id: 57 request: proto: HTTP/1.1 @@ -2820,7 +2818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -2828,20 +2826,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 725 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.743791Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","name":"tf-pn-gracious-shamir","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.743791Z","id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"},{"created_at":"2025-06-30T15:02:09.743791Z","id":"edbad254-78ce-459f-8d31-4005564b2d7c","private_network_id":"b65ceb93-6477-45d4-874a-c264d5c7b903","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:5296::/64","updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}],"tags":[],"updated_at":"2025-06-30T15:02:09.743791Z","vpc_id":"b54dcdaf-52de-47a8-be2e-3b4a94f228c8"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1067" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2849,10 +2847,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b0b9df5-38dd-42fa-af50-21f3d0055d73 + - 68284e4b-133f-4a3e-8e21-ad81cd6335f7 status: 200 OK code: 200 - duration: 26.296542ms + duration: 106.970375ms - id: 58 request: proto: HTTP/1.1 @@ -2869,7 +2867,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=1d83b574-1e39-4458-a6af-a413dc779f80&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2877,20 +2875,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 725 + content_length: 1546 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - - "725" + - "1546" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2898,10 +2896,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c3b28333-b5a9-4419-a6a1-a49e05fdd61c + - d018ec28-bba2-4f9b-9dca-eb64c432db42 status: 200 OK code: 200 - duration: 109.937958ms + duration: 51.244459ms - id: 59 request: proto: HTTP/1.1 @@ -2918,7 +2916,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=b65ceb93-6477-45d4-874a-c264d5c7b903&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2928,7 +2926,7 @@ interactions: trailer: {} content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - "1546" @@ -2937,9 +2935,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2947,10 +2945,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f9862971-2c2a-4cdc-87c9-77b3d981a2ff + - 3fcc4991-1ed2-480d-983f-39a531581a51 status: 200 OK code: 200 - duration: 88.55975ms + duration: 56.395667ms - id: 60 request: proto: HTTP/1.1 @@ -2967,7 +2965,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=fb9f30bb-33f8-4ba9-bc66-d5e53d469658&resource_type=redis_cluster method: GET response: proto: HTTP/2.0 @@ -2977,7 +2975,7 @@ interactions: trailer: {} content_length: 1546 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"ips":[{"address":"172.16.32.3/22","created_at":"2025-06-30T15:48:40.022356Z","id":"6d1e4c8a-509d-4753-bcc5-170669146eec","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:10:38:C8","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.142516Z","zone":null},{"address":"172.16.32.2/22","created_at":"2025-06-30T15:48:40.022356Z","id":"94dce7d5-2290-4b64-8d5c-69edd012205b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:1D:8B:67","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:37.871160Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:48:40.022356Z","id":"1fe745e1-8c8a-4d7b-b5b6-2bc4b610ae72","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","mac_address":"02:00:00:15:E2:FF","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"59b3145e-0e9b-447f-bb9f-be03ecf73c2f"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:51:38.357142Z","zone":null}],"total_count":3}' headers: Content-Length: - "1546" @@ -2986,9 +2984,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2996,10 +2994,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c5c1728-dbff-4fd6-81f4-d606c60fafbf + - 00c62c38-44e5-425e-8735-2e6f097605c7 status: 200 OK code: 200 - duration: 48.2355ms + duration: 55.11875ms - id: 61 request: proto: HTTP/1.1 @@ -3016,7 +3014,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=bf0f9547-a58b-4cfc-a560-90b94a95923b&resource_type=redis_cluster + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3024,20 +3022,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1546 + content_length: 725 uncompressed: false - body: '{"ips":[{"address":"172.16.32.2/22","created_at":"2025-06-30T15:02:13.231072Z","id":"3cda2bc0-2a0f-440f-bede-4b307bf822fa","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:1C:B6:A5","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.659519Z","zone":null},{"address":"172.16.32.3/22","created_at":"2025-06-30T15:02:13.231072Z","id":"112daed3-be2f-44ed-a1b9-d3fa6421a1ba","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:14:EB:3B","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:15.880285Z","zone":null},{"address":"172.16.32.4/22","created_at":"2025-06-30T15:02:13.231072Z","id":"f86bb437-4876-4b5a-98e4-da977ee9a476","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","mac_address":"02:00:00:18:E2:29","name":"test_redis_endpoints","type":"redis_cluster"},"reverses":[],"source":{"subnet_id":"b30736bf-18a1-4f78-bef9-58d2507e2c8b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:05:16.098462Z","zone":null}],"total_count":3}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:37.821571Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "1546" + - "725" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:18 GMT + - Mon, 30 Jun 2025 15:51:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3045,10 +3043,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 082bc65c-5ff8-434d-b831-51da4e10d198 + - 259636da-17b7-44ae-a42b-500bbdd3f929 status: 200 OK code: 200 - duration: 61.485416ms + duration: 109.052958ms - id: 62 request: proto: HTTP/1.1 @@ -3065,28 +3063,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b - method: GET + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 725 + content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"ready","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:15.586266Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - - "725" + - "728" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:19 GMT + - Mon, 30 Jun 2025 15:51:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3094,10 +3092,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83b152c4-b302-4f54-8008-e090a4f89ddf + - 20302bea-1ef2-468a-893c-f591d758c10c status: 200 OK code: 200 - duration: 114.112833ms + duration: 2.143971417s - id: 63 request: proto: HTTP/1.1 @@ -3114,8 +3112,8 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b - method: DELETE + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -3124,7 +3122,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3133,9 +3131,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:21 GMT + - Mon, 30 Jun 2025 15:51:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3143,10 +3141,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c49ec1c5-d32d-4720-924d-c9fbf62283f5 + - 9e4aa89e-f719-4019-832c-2c3ab41dee0b status: 200 OK code: 200 - duration: 2.267762083s + duration: 117.397375ms - id: 64 request: proto: HTTP/1.1 @@ -3163,7 +3161,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3173,7 +3171,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3182,9 +3180,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:21 GMT + - Mon, 30 Jun 2025 15:51:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3192,10 +3190,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f937ead-c7b6-4447-ac9c-8cf1b4bad305 + - fb46f6dc-abf5-460a-878a-365d914ca266 status: 200 OK code: 200 - duration: 92.310542ms + duration: 102.609917ms - id: 65 request: proto: HTTP/1.1 @@ -3212,7 +3210,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3222,7 +3220,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3231,9 +3229,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:26 GMT + - Mon, 30 Jun 2025 15:51:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3241,10 +3239,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee167c53-cff4-4670-aca3-c2ba1cf7d8cc + - c05d436a-4f21-4e2f-b7eb-46f4413faf33 status: 200 OK code: 200 - duration: 119.117ms + duration: 117.5735ms - id: 66 request: proto: HTTP/1.1 @@ -3261,7 +3259,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3271,7 +3269,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3280,9 +3278,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:31 GMT + - Mon, 30 Jun 2025 15:52:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3290,10 +3288,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7eacd54-9964-4c46-89fe-964f321d4781 + - 3486297d-579c-4447-ab4a-ab9b650e3bdc status: 200 OK code: 200 - duration: 117.3665ms + duration: 108.477333ms - id: 67 request: proto: HTTP/1.1 @@ -3310,7 +3308,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3320,7 +3318,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3329,9 +3327,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:36 GMT + - Mon, 30 Jun 2025 15:52:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3339,10 +3337,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3e728bc4-1933-4c76-b6b1-5a885a151101 + - 91a0d39d-8db1-40a4-89ff-0ea5d367f993 status: 200 OK code: 200 - duration: 130.73325ms + duration: 130.298167ms - id: 68 request: proto: HTTP/1.1 @@ -3359,7 +3357,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3369,7 +3367,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3378,9 +3376,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:41 GMT + - Mon, 30 Jun 2025 15:52:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3388,10 +3386,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5b1839b3-f6b8-4911-a8c7-de53db950a10 + - b1846a64-4097-4176-976f-32aec281874f status: 200 OK code: 200 - duration: 126.358542ms + duration: 125.527417ms - id: 69 request: proto: HTTP/1.1 @@ -3408,7 +3406,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3418,7 +3416,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3427,9 +3425,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:47 GMT + - Mon, 30 Jun 2025 15:52:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3437,10 +3435,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad7020e8-602b-411f-902d-bf31045728bf + - 13609d78-892f-420c-99e1-914df2f1e526 status: 200 OK code: 200 - duration: 111.922291ms + duration: 122.538625ms - id: 70 request: proto: HTTP/1.1 @@ -3457,7 +3455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3467,7 +3465,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3476,9 +3474,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:52 GMT + - Mon, 30 Jun 2025 15:52:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3486,10 +3484,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e242af2c-163a-429c-bf88-55fa690f907b + - d4bdd165-b872-4c51-b600-9c05ddd79f2b status: 200 OK code: 200 - duration: 106.28425ms + duration: 117.711167ms - id: 71 request: proto: HTTP/1.1 @@ -3506,7 +3504,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3516,7 +3514,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3525,9 +3523,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:05:57 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3535,10 +3533,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f750cde9-9225-4ef3-91fa-d2a122d79aaf + - c105f827-5109-40d6-953e-62b8a41ed40e status: 200 OK code: 200 - duration: 133.951792ms + duration: 98.045166ms - id: 72 request: proto: HTTP/1.1 @@ -3555,7 +3553,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3565,7 +3563,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3574,9 +3572,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:06:02 GMT + - Mon, 30 Jun 2025 15:52:32 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3584,10 +3582,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaa3f7d9-6444-4122-9f09-01bb0b0ee705 + - 8c267881-e027-4f28-986b-7e647d65b58c status: 200 OK code: 200 - duration: 125.591458ms + duration: 111.062625ms - id: 73 request: proto: HTTP/1.1 @@ -3604,7 +3602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3614,7 +3612,7 @@ interactions: trailer: {} content_length: 728 uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' + body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:48:38.283981Z","endpoints":[{"id":"9aaaabe3-5be8-4bac-a29e-e7602482aab5","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"1d83b574-1e39-4458-a6af-a413dc779f80","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:51:44.288361Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' headers: Content-Length: - "728" @@ -3623,9 +3621,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:06:07 GMT + - Mon, 30 Jun 2025 15:52:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3633,10 +3631,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b14965d-e2a2-4158-ae77-efda4822d9ca + - 7b633b0a-9a6c-4e5f-b86c-17f70cb3ab2e status: 200 OK code: 200 - duration: 141.739208ms + duration: 124.682042ms - id: 74 request: proto: HTTP/1.1 @@ -3653,56 +3651,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 728 - uncompressed: false - body: '{"acl_rules":[],"cluster_settings":[],"cluster_size":3,"created_at":"2025-06-30T15:02:10.747390Z","endpoints":[{"id":"df17979b-df8d-4f3d-9fce-ce75a2773b09","ips":["172.16.32.2","172.16.32.3","172.16.32.4"],"port":6379,"private_network":{"id":"b65ceb93-6477-45d4-874a-c264d5c7b903","provisioning_mode":"ipam","service_ips":["172.16.32.2/22","172.16.32.3/22","172.16.32.4/22"],"zone":"fr-par-1"}}],"id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","name":"test_redis_endpoints","node_type":"RED1-XS","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","status":"deleting","tags":[],"tls_enabled":false,"updated_at":"2025-06-30T15:05:19.213926Z","upgradable_versions":[],"user_name":"my_initial_user","version":"7.0.5","zone":"fr-par-1"}' - headers: - Content-Length: - - "728" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:06:12 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 40d0fc5f-29e8-4f5a-8e1a-12456595e2e5 - status: 200 OK - code: 200 - duration: 115.819792ms - - id: 75 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/bf0f9547-a58b-4cfc-a560-90b94a95923b + url: https://api.scaleway.com/redis/v1/zones/fr-par-1/clusters/fb9f30bb-33f8-4ba9-bc66-d5e53d469658 method: GET response: proto: HTTP/2.0 @@ -3712,7 +3661,7 @@ interactions: trailer: {} content_length: 128 uncompressed: false - body: '{"message":"resource is not found","resource":"cluster","resource_id":"bf0f9547-a58b-4cfc-a560-90b94a95923b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"cluster","resource_id":"fb9f30bb-33f8-4ba9-bc66-d5e53d469658","type":"not_found"}' headers: Content-Length: - "128" @@ -3721,9 +3670,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:06:17 GMT + - Mon, 30 Jun 2025 15:52:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3731,11 +3680,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a2110fcb-3d54-4512-a845-bcdcad911d71 + - 64549b00-2271-4904-a5cd-e396b822c306 status: 404 Not Found code: 404 - duration: 49.109125ms - - id: 76 + duration: 36.518166ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3751,7 +3700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/b65ceb93-6477-45d4-874a-c264d5c7b903 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/1d83b574-1e39-4458-a6af-a413dc779f80 method: DELETE response: proto: HTTP/2.0 @@ -3768,9 +3717,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:06:21 GMT + - Mon, 30 Jun 2025 15:52:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3778,11 +3727,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 53c47a95-133a-4fb6-a58c-68df8c0b2e57 + - 82881f00-db9e-4ae3-bcc5-48c7418a5624 status: 204 No Content code: 204 - duration: 3.320885833s - - id: 77 + duration: 2.264829083s + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3798,7 +3747,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54dcdaf-52de-47a8-be2e-3b4a94f228c8 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/42594341-255b-4ca3-8ca5-3875f593a242 method: DELETE response: proto: HTTP/2.0 @@ -3815,9 +3764,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:06:21 GMT + - Mon, 30 Jun 2025 15:52:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3825,7 +3774,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecbe922a-fb89-4b47-82c6-de584f68b62a + - 15eb322c-ac5c-4c12-b9c4-7632a3c7ae0f status: 204 No Content code: 204 - duration: 133.530333ms + duration: 104.965667ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml index e72e7f2b6c..2036a63b06 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance-lb.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 424 + content_length: 39208 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":false,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.472909Z"}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "424" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT + Link: + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,50 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3ad9dd2-9882-4bb0-be55-692351df1f28 + - 041e053c-4a5f-4763-b275-2eead106461f + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 55.683208ms + duration: 156.279ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 79 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 288 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "39208" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT - Link: - - ; rel="next",; rel="last" + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -99,31 +101,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1327bed-7daa-4e1f-8108-b74e4813de9c - X-Total-Count: - - "75" + - 88da0c2a-871c-4207-989f-5278e1c43bd9 status: 200 OK code: 200 - duration: 56.686792ms + duration: 181.2955ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 79 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","is_ipv6":false,"tags":[]}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs method: POST response: proto: HTTP/2.0 @@ -131,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 424 uncompressed: false - body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":false,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.850969Z"}' headers: Content-Length: - - "288" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -152,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c440ca7-961f-470e-8530-e19e0bc6caec + - 25a43a0d-18cc-4245-aa96-681c5942755a status: 200 OK code: 200 - duration: 70.844458ms + duration: 187.475584ms - id: 3 request: proto: HTTP/1.1 @@ -174,7 +174,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69/enable-custom-routes-propagation + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -184,7 +184,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' + body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.887049Z"}' headers: Content-Length: - "423" @@ -193,9 +193,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,10 +203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 402b26b9-a1f9-4473-8ee2-45f5b4dc02d4 + - 0c700098-78d3-43c2-8af3-a2c10072d55c status: 200 OK code: 200 - duration: 43.656375ms + duration: 34.482458ms - id: 4 request: proto: HTTP/1.1 @@ -242,11 +242,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -254,12 +254,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49fc6347-7b2d-4312-82c2-c082568d8f18 + - b95d23db-489b-42c3-8323-e9c25d2c581b X-Total-Count: - "75" status: 200 OK code: 200 - duration: 49.697167ms + duration: 68.508833ms - id: 5 request: proto: HTTP/1.1 @@ -276,7 +276,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 method: GET response: proto: HTTP/2.0 @@ -284,20 +284,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 288 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' + body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "423" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,10 +305,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 856ecc91-c91b-460b-a96e-a24c60300791 + - f4de8bb9-11b5-40e6-8197-824f3a8783ca status: 200 OK code: 200 - duration: 21.405958ms + duration: 55.238625ms - id: 6 request: proto: HTTP/1.1 @@ -325,7 +325,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba method: GET response: proto: HTTP/2.0 @@ -333,20 +333,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 423 uncompressed: false - body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.887049Z"}' headers: Content-Length: - - "288" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec1e05e5-1a99-4b86-bf77-fe09b2aabe19 + - e4845acd-6cdb-4726-bcea-819e0903a52c status: 200 OK code: 200 - duration: 53.17975ms + duration: 63.725833ms - id: 7 request: proto: HTTP/1.1 @@ -393,9 +393,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,29 +403,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e033b9e8-9499-4cbf-88c4-92e5f7493852 + - 1e1d7723-6d35-4dc8-85b4-25465b7ba021 status: 200 OK code: 200 - duration: 73.042042ms + duration: 80.276666ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 214 + content_length: 252 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69","default_route_propagation_enabled":false}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-dazzling-gagarin","description":"","ip_id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs method: POST response: proto: HTTP/2.0 @@ -433,20 +433,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 883 uncompressed: false - body: '{"message":"internal error"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034230Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:55.043034230Z","zone":"fr-par-1"}' headers: Content-Length: - - "28" + - "883" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -454,50 +454,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4c265977-25dd-41ab-9cf3-a2e893db82b8 - status: 500 Internal Server Error - code: 500 - duration: 205.870959ms + - 70d5ac5e-350b-4642-841e-ed953dfab72d + status: 200 OK + code: 200 + duration: 419.32125ms - id: 9 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 249 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"tf-lb-brave-gagarin","description":"","ip_id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_ids":[],"tags":null,"type":"LB-S","ssl_compatibility_level":"ssl_compatibility_level_intermediate"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs - method: POST + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 880 + content_length: 1078 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683177965Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:07.683177965Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"unknown","updated_at":"2025-06-30T15:39:55.324167Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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":"creating","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:39:55.333388Z","zone":"fr-par-1"}' headers: Content-Length: - - "880" + - "1078" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,48 +503,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3be5471-4f0a-4216-9cae-cd1ac3e73978 + - 134204ca-0c78-4d6d-9b43-a1a9786c3396 status: 200 OK code: 200 - duration: 363.4865ms + duration: 70.161958ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 214 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 874 + content_length: 1082 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:07.683178Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' headers: Content-Length: - - "874" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,52 +554,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9b2f9fdf-9e84-4a39-baef-c7fdebcadaca + - be1f32aa-b9a5-4aeb-aa70-cede113a8d03 status: 200 OK code: 200 - duration: 93.128167ms + duration: 536.463666ms - id: 11 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 321 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 1082 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' headers: Content-Length: - - "1814" + - "1082" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -607,28 +603,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55203d3b-79b7-45bd-92d5-2de1297db1bb - status: 201 Created - code: 201 - duration: 638.589291ms + - b5ec329e-622f-426d-bff2-366b2c0adddc + status: 200 OK + code: 200 + duration: 50.469375ms - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 321 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -637,7 +635,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -646,9 +644,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,10 +656,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 370e0484-e08a-47a0-972f-4743429ac634 - status: 200 OK - code: 200 - duration: 133.094792ms + - 1902e88f-dc2a-4ad4-80f7-054730a1765b + status: 201 Created + code: 201 + duration: 1.141571083s - id: 13 request: proto: HTTP/1.1 @@ -676,7 +676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -686,7 +686,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:07.790903+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -695,9 +695,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -705,10 +705,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2132d7d2-c488-4f13-ad70-a87240b9107a + - b67a4b04-82ba-4643-9615-fb4645899a0d status: 200 OK code: 200 - duration: 138.91275ms + duration: 140.549125ms - id: 14 request: proto: HTTP/1.1 @@ -725,7 +725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -733,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1814 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:55.260472+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "686" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -754,52 +754,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b79db0b3-cb84-4a1e-a97d-f9a124848c37 + - 3f6444a9-cc9c-4a9b-b089-ad1354e9e611 status: 200 OK code: 200 - duration: 44.417333ms + duration: 127.329ms - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action - method: POST + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 686 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action","href_result":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7","id":"776c1b09-03ce-4cf3-ac0f-0dedbe5ffa2c","progress":0,"started_at":"2025-06-30T15:02:08.778177+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' headers: Content-Length: - - "357" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/776c1b09-03ce-4cf3-ac0f-0dedbe5ffa2c + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -807,48 +803,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 14048a7d-8abc-466a-b567-750383af2c0d - status: 202 Accepted - code: 202 - duration: 230.750625ms + - 6a64e9b5-ccff-4ea3-a90c-31694df68ab0 + status: 200 OK + code: 200 + duration: 48.023667ms - id: 16 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1836 + content_length: 357 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:08.605631+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action","href_result":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75","id":"90b74503-9c5a-458b-bc75-34cfaa1725b2","progress":0,"started_at":"2025-06-30T15:39:56.771247+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1836" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/90b74503-9c5a-458b-bc75-34cfaa1725b2 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -856,50 +856,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28345d4f-f77f-4c47-b9c7-d303896a809c - status: 200 OK - code: 200 - duration: 145.204ms + - 79d03cfa-c047-4e2a-91a4-ba437ca90fa9 + status: 202 Accepted + code: 202 + duration: 395.955959ms - id: 17 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 214 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69","default_route_propagation_enabled":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1836 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:56.478627+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1082" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:39:57 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -907,10 +905,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 561151cb-262b-4f64-b282-278986a4f734 + - 1e7634a5-6971-488c-b86a-f3f83b0a0775 status: 200 OK code: 200 - duration: 591.301042ms + duration: 191.074542ms - id: 18 request: proto: HTTP/1.1 @@ -927,7 +925,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -935,20 +933,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1082 + content_length: 1970 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1082" + - "1970" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -956,10 +954,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1c6f4fb-d24e-4d5f-9614-15b6862f4e1a + - 8f529772-ca37-4a95-8ae4-b51a012c03a8 status: 200 OK code: 200 - duration: 29.539125ms + duration: 279.013ms - id: 19 request: proto: HTTP/1.1 @@ -976,7 +974,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -984,20 +982,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1969" + - "1970" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1005,10 +1003,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2055dc6-57c4-44da-b0ce-40f41deac45d + - bc803547-edc8-4201-aefd-385d03379296 status: 200 OK code: 200 - duration: 211.137708ms + duration: 393.485875ms - id: 20 request: proto: HTTP/1.1 @@ -1025,7 +1023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -1033,20 +1031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' headers: Content-Length: - - "1969" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1054,10 +1052,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ad05e163-08a8-4c61-b931-d2567698a6b7 - status: 200 OK - code: 200 - duration: 183.352625ms + - c3c8e260-b9a1-411b-ad2f-f01895e02032 + status: 404 Not Found + code: 404 + duration: 53.882875ms - id: 21 request: proto: HTTP/1.1 @@ -1074,7 +1072,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -1082,20 +1080,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 686 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' + body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' headers: Content-Length: - - "143" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,10 +1101,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7348b926-ac5b-4aeb-8c2b-0df11b17bbbe - status: 404 Not Found - code: 404 - duration: 42.830792ms + - e866ad00-119b-4442-af7f-fc80e23477a6 + status: 200 OK + code: 200 + duration: 52.265958ms - id: 22 request: proto: HTTP/1.1 @@ -1123,7 +1121,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/user_data method: GET response: proto: HTTP/2.0 @@ -1131,20 +1129,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 17 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' + body: '{"user_data":[]}' headers: Content-Length: - - "686" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,10 +1150,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2f689c2a-0584-41c3-9930-ed21f95f7821 + - 7264d561-e49c-44b9-9ffa-b39095d3ebb6 status: 200 OK code: 200 - duration: 46.496834ms + duration: 72.522583ms - id: 23 request: proto: HTTP/1.1 @@ -1172,7 +1170,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics method: GET response: proto: HTTP/2.0 @@ -1180,20 +1178,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 20 uncompressed: false - body: '{"user_data":[]}' + body: '{"private_nics":[]}' headers: Content-Length: - - "17" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1201,10 +1201,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf7faa96-13fe-4ffe-8337-7f2ca9b0ed64 + - a891831e-5088-4c1f-a1e0-35724429fdd4 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 90.671083ms + duration: 81.439917ms - id: 24 request: proto: HTTP/1.1 @@ -1221,7 +1223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -1229,22 +1231,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1970 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1970" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:40:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,50 +1252,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 48013c05-3d50-4923-8261-afe24587d2d2 - X-Total-Count: - - "0" + - 5778c9d1-b685-4234-aa96-a9bf1088b5c0 status: 200 OK code: 200 - duration: 62.3005ms + duration: 340.116208ms - id: 25 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 473 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "1969" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:40:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1303,30 +1303,28 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71aa3917-ebfe-4a1b-b445-a3de3413dbbe - status: 200 OK - code: 200 - duration: 174.606542ms + - 39c9727e-4daf-4ca0-a593-09422958cb9e + status: 201 Created + code: 201 + duration: 5.525015833s - id: 26 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 + method: GET response: proto: HTTP/2.0 proto_major: 2 @@ -1335,7 +1333,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1344,9 +1342,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:20 GMT + - Mon, 30 Jun 2025 15:40:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1354,10 +1352,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ea27809-69e3-4041-b7a1-77a96d027574 - status: 201 Created - code: 201 - duration: 5.840893666s + - d2af3a21-ca04-466c-a476-fe979cd388b8 + status: 200 OK + code: 200 + duration: 66.497667ms - id: 27 request: proto: HTTP/1.1 @@ -1374,7 +1372,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1384,7 +1382,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1393,9 +1391,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:20 GMT + - Mon, 30 Jun 2025 15:40:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1403,10 +1401,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f05fea80-e120-41f0-aae6-a57fffa28ef8 + - e1046631-8bc3-4fec-b173-ac713d506114 status: 200 OK code: 200 - duration: 75.850292ms + duration: 414.893083ms - id: 28 request: proto: HTTP/1.1 @@ -1423,7 +1421,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1433,7 +1431,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1442,9 +1440,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:25 GMT + - Mon, 30 Jun 2025 15:40:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1452,10 +1450,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ba89797-3805-4c78-8c97-d7e76aba9e67 + - 7653cbac-4179-4025-9ed1-4d5788d070e2 status: 200 OK code: 200 - duration: 121.718875ms + duration: 88.944667ms - id: 29 request: proto: HTTP/1.1 @@ -1472,7 +1470,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1482,7 +1480,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1491,9 +1489,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:30 GMT + - Mon, 30 Jun 2025 15:40:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1501,10 +1499,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3786ca21-68dc-47ad-8a74-63ddc0baae8a + - f1e71b02-1482-4cf3-863a-f25e86aed642 status: 200 OK code: 200 - duration: 85.502417ms + duration: 61.170458ms - id: 30 request: proto: HTTP/1.1 @@ -1521,7 +1519,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -1529,20 +1527,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1073 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:35 GMT + - Mon, 30 Jun 2025 15:40:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1550,10 +1548,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 454ba141-c0a3-4e17-8ac5-0cc8d58a1f98 + - 7d06a739-162d-4789-93cd-bce7ff1b0dc2 status: 200 OK code: 200 - duration: 91.383542ms + duration: 81.016083ms - id: 31 request: proto: HTTP/1.1 @@ -1570,7 +1568,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -1578,20 +1576,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:38 GMT + - Mon, 30 Jun 2025 15:40:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1599,10 +1597,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55fa0d5a-016b-4939-bfb7-bec58c89ce44 + - 978a3ba8-7092-4c41-b91c-a863898f826e status: 200 OK code: 200 - duration: 81.779375ms + duration: 80.538792ms - id: 32 request: proto: HTTP/1.1 @@ -1619,7 +1617,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -1627,20 +1625,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 38 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"private_network":[],"total_count":0}' headers: Content-Length: - - "1070" + - "38" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:38 GMT + - Mon, 30 Jun 2025 15:40:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1648,10 +1646,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97013619-8fbf-4e11-ac28-b184b9c60180 + - 850da41c-c37e-402d-9042-30d64504e724 status: 200 OK code: 200 - duration: 87.582042ms + duration: 116.396958ms - id: 33 request: proto: HTTP/1.1 @@ -1668,7 +1666,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1676,20 +1674,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 38 + content_length: 473 uncompressed: false - body: '{"private_network":[],"total_count":0}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - - "38" + - "473" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:38 GMT + - Mon, 30 Jun 2025 15:40:29 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1697,10 +1695,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7eaf853-a460-4822-84a7-8ac07e39574b + - e0bf28eb-4f83-4f7f-b1db-10b46a78ee24 status: 200 OK code: 200 - duration: 114.374458ms + duration: 128.58075ms - id: 34 request: proto: HTTP/1.1 @@ -1717,7 +1715,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1727,7 +1725,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:14.971805+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:03.696117+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1736,9 +1734,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:41 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1746,10 +1744,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaa03136-f5a5-4a19-83c0-4b3533f7d283 + - 58eec52a-b6a7-4b43-8de7-73004c8485c7 status: 200 OK code: 200 - duration: 82.07925ms + duration: 68.4015ms - id: 35 request: proto: HTTP/1.1 @@ -1766,7 +1764,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1776,7 +1774,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1785,9 +1783,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1795,10 +1793,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5090f84c-3a9d-4c51-9cf7-0b6e86920c6b + - 5cc48b43-d0b1-4943-826a-92d9039d69fb status: 200 OK code: 200 - duration: 59.1735ms + duration: 71.547416ms - id: 36 request: proto: HTTP/1.1 @@ -1815,7 +1813,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -1825,7 +1823,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1834,9 +1832,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1844,10 +1842,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a383a520-5eba-420c-86ad-f18422c2d62c + - ef385854-656b-4639-83e9-a3327e2dbd32 status: 200 OK code: 200 - duration: 82.506292ms + duration: 68.185708ms - id: 37 request: proto: HTTP/1.1 @@ -1864,7 +1862,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -1872,20 +1870,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2427" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1893,10 +1891,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 338719c3-7aa2-4068-860e-7c9b89ebf26b + - 770c5368-b0ca-4952-9590-4678c0a7736c status: 200 OK code: 200 - duration: 151.806209ms + duration: 151.164583ms - id: 38 request: proto: HTTP/1.1 @@ -1913,7 +1911,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d0d80aa4-05a5-4fad-882c-c4bca8bab785&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3d25c26d-ce49-4da6-8d23-eae520bfdd13&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1921,20 +1919,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1070 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1942,10 +1940,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fb60203-9300-438a-834a-0eae85845845 + - c589bc39-d0ec-40d7-8745-fcaae8e69c5b status: 200 OK code: 200 - duration: 44.444292ms + duration: 56.7455ms - id: 39 request: proto: HTTP/1.1 @@ -1962,7 +1960,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -1972,7 +1970,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -1981,9 +1979,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1991,10 +1989,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c28c9e8-033b-474b-b35f-7c8bb55125c9 + - 07fb0587-1bee-4f1f-b943-0a16c2909530 status: 200 OK code: 200 - duration: 50.060584ms + duration: 56.630875ms - id: 40 request: proto: HTTP/1.1 @@ -2011,7 +2009,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -2019,20 +2017,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:10.055268Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:39:57.624881Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2040,10 +2038,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4736553e-c63c-4cdf-97bf-1390dc039965 + - 35444b3b-f7a1-45bb-9ce8-bbcae040bb5e status: 200 OK code: 200 - duration: 67.66475ms + duration: 80.924083ms - id: 41 request: proto: HTTP/1.1 @@ -2055,14 +2053,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-lb-bkd-zealous-dubinsky","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.52.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' + body: '{"name":"tf-lb-bkd-suspicious-moore","forward_protocol":"http","forward_port":80,"forward_port_algorithm":"roundrobin","sticky_sessions":"none","sticky_sessions_cookie_name":"","health_check":{"port":80,"check_max_retries":2,"check_send_proxy":false,"transient_check_delay":"0.500000000s","check_delay":60000,"check_timeout":30000},"server_ip":["172.16.84.2"],"on_marked_down_action":"on_marked_down_action_none","proxy_protocol":"proxy_protocol_none","ssl_bridging":false,"ignore_ssl_server_verify":false,"max_retries":3,"timeout_queue":"0.000000000s","timeout_server":300000,"timeout_connect":5000,"timeout_tunnel":900000}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/backends + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/backends method: POST response: proto: HTTP/2.0 @@ -2070,20 +2068,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1934 + content_length: 1937 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:46.682729643Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729391973Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682729643Z"}' + body: '{"created_at":"2025-06-30T15:40:40.344312027Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696476Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312027Z"}' headers: Content-Length: - - "1934" + - "1937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2091,10 +2089,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 76d7b103-ecec-48ca-acd0-29e98a096125 + - 969281a9-56b4-47fa-8294-9614865a9c61 status: 200 OK code: 200 - duration: 314.018542ms + duration: 476.225458ms - id: 42 request: proto: HTTP/1.1 @@ -2111,7 +2109,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -2119,20 +2117,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1075 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729392Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1072" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2140,10 +2138,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d9d932c-f2bb-4acd-a499-71ce9c996e84 + - 8a46dd92-0812-46fe-bf59-7bafd72716f1 status: 200 OK code: 200 - duration: 87.041833ms + duration: 68.343458ms - id: 43 request: proto: HTTP/1.1 @@ -2160,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a method: GET response: proto: HTTP/2.0 @@ -2168,20 +2166,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1925 + content_length: 1928 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:46.682730Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:02:46.729392Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682730Z"}' + body: '{"created_at":"2025-06-30T15:40:40.344312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:40.369696Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312Z"}' headers: Content-Length: - - "1925" + - "1928" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2189,10 +2187,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cec00afc-dd5d-4d52-b33c-4c3752cfce77 + - 4c17933c-227f-4def-a7a6-60f2fe0ed66a status: 200 OK code: 200 - duration: 76.940458ms + duration: 101.3645ms - id: 44 request: proto: HTTP/1.1 @@ -2209,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -2217,20 +2215,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,10 +2236,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a436fdd3-48bf-4aa6-86f0-a273a9bac0af + - 0b546f76-d5da-4570-b2fd-7da472869198 status: 200 OK code: 200 - duration: 71.327708ms + duration: 79.197667ms - id: 45 request: proto: HTTP/1.1 @@ -2258,7 +2256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2268,7 +2266,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2277,9 +2275,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,10 +2285,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3ad08ea-45b6-4d05-a581-8b87c8b819a0 + - 5584aeac-d864-4efa-b978-2f5a2b96c82b status: 200 OK code: 200 - duration: 54.706833ms + duration: 132.634ms - id: 46 request: proto: HTTP/1.1 @@ -2307,7 +2305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba method: GET response: proto: HTTP/2.0 @@ -2317,7 +2315,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.472909Z","custom_routes_propagation_enabled":true,"id":"c74d9233-268f-41a0-8a08-6aec971f4e69","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:07.511209Z"}' + body: '{"created_at":"2025-06-30T15:39:54.850969Z","custom_routes_propagation_enabled":true,"id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.887049Z"}' headers: Content-Length: - "423" @@ -2326,9 +2324,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,10 +2334,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - efe3102b-e278-4b8e-b897-b674293ade02 + - 8e63e4df-18ec-4cbc-8f28-05c027485e4d status: 200 OK code: 200 - duration: 25.90975ms + duration: 34.55875ms - id: 47 request: proto: HTTP/1.1 @@ -2356,7 +2354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 method: GET response: proto: HTTP/2.0 @@ -2366,7 +2364,7 @@ interactions: trailer: {} content_length: 322 uncompressed: false - body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - "322" @@ -2375,9 +2373,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,10 +2383,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bb8688a-bc65-4973-906a-52632768feb8 + - ba0e1bb7-db88-423c-b5f8-8d48cb77a276 status: 200 OK code: 200 - duration: 46.966208ms + duration: 47.174916ms - id: 48 request: proto: HTTP/1.1 @@ -2405,7 +2403,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 method: GET response: proto: HTTP/2.0 @@ -2415,7 +2413,7 @@ interactions: trailer: {} content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.811783Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.811783Z","id":"9c79c077-72a8-4959-9658-c62d01ab3a6b","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"},{"created_at":"2025-06-30T15:02:09.811783Z","id":"4afbcf9a-7f49-4f99-8680-2151c13acb46","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a757::/64","updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}],"tags":[],"updated_at":"2025-06-30T15:02:09.811783Z","vpc_id":"c74d9233-268f-41a0-8a08-6aec971f4e69"}' + body: '{"created_at":"2025-06-30T15:39:55.011280Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.011280Z","id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.84.0/22","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"},{"created_at":"2025-06-30T15:39:55.011280Z","id":"946d0044-596a-4b79-8f5f-66e5e893ac1f","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:fb63::/64","updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}],"tags":[],"updated_at":"2025-06-30T15:39:55.011280Z","vpc_id":"4d387c1a-5e4d-4c82-8b8f-782e1508e5ba"}' headers: Content-Length: - "1082" @@ -2424,9 +2422,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,10 +2432,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b12a9d0-d417-48d9-9735-c8b0f7e1b6a1 + - 4e201edb-ab24-4702-8b23-a9af6355479a status: 200 OK code: 200 - duration: 29.098417ms + duration: 33.732417ms - id: 49 request: proto: HTTP/1.1 @@ -2454,7 +2452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -2462,20 +2460,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 2428 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1070" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,10 +2481,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 152000d9-483d-4033-8681-97a107679339 + - a9f9555f-a2cc-4537-b11a-5381e79a694b status: 200 OK code: 200 - duration: 70.249875ms + duration: 210.50225ms - id: 50 request: proto: HTTP/1.1 @@ -2503,7 +2501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -2511,20 +2509,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 1073 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "2427" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,10 +2530,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89e35f8a-ffce-484a-bb81-a78710af7566 + - 1b7ce5cd-14c7-4d4c-b80c-ee7981d26a56 status: 200 OK code: 200 - duration: 133.301916ms + duration: 163.766917ms - id: 51 request: proto: HTTP/1.1 @@ -2552,7 +2550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -2562,7 +2560,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' headers: Content-Length: - "143" @@ -2571,9 +2569,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,10 +2579,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfd1f613-f704-498a-be94-af5e076fcc25 + - 91b2e721-d317-4566-aa65-499b376c03f3 status: 404 Not Found code: 404 - duration: 40.099625ms + duration: 28.054416ms - id: 52 request: proto: HTTP/1.1 @@ -2601,7 +2599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -2609,20 +2607,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 686 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2630,10 +2628,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 36f6fe36-d97b-4dc1-9cc0-82867453eb42 + - dceff1a9-e5eb-41fa-a58a-3c50f8b1340e status: 200 OK code: 200 - duration: 60.478875ms + duration: 51.315917ms - id: 53 request: proto: HTTP/1.1 @@ -2650,7 +2648,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -2658,20 +2656,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 686 + content_length: 1073 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "686" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2679,10 +2677,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2d8c585b-4f7c-48a5-b71f-1d8e95b76873 + - ad553915-e506-415a-8e9d-b8a6d6d4fd9d status: 200 OK code: 200 - duration: 52.76075ms + duration: 80.4285ms - id: 54 request: proto: HTTP/1.1 @@ -2699,7 +2697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505/private-networks?order_by=created_at_asc + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0/private-networks?order_by=created_at_asc method: GET response: proto: HTTP/2.0 @@ -2718,9 +2716,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2728,10 +2726,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dd2ca9cd-ea47-4184-b391-619839e6d049 + - bd164a07-b6e3-4844-96d0-b32f1904a096 status: 200 OK code: 200 - duration: 56.824ms + duration: 60.411333ms - id: 55 request: proto: HTTP/1.1 @@ -2748,7 +2746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/user_data method: GET response: proto: HTTP/2.0 @@ -2767,9 +2765,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,10 +2775,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e928f310-cab9-4af0-bf75-d98608af04fd + - 2c62861d-bf81-4448-84d3-5cdf77b66d89 status: 200 OK code: 200 - duration: 57.383292ms + duration: 89.677792ms - id: 56 request: proto: HTTP/1.1 @@ -2797,7 +2795,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics method: GET response: proto: HTTP/2.0 @@ -2807,7 +2805,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2816,11 +2814,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,12 +2826,12 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a3703f50-0772-4763-8415-b627c102b522 + - d3361d94-9508-4db7-880e-16c4775e14c5 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 72.613333ms + duration: 64.339ms - id: 57 request: proto: HTTP/1.1 @@ -2850,7 +2848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2858,20 +2856,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1070 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,10 +2877,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbd9a8a3-3600-481a-9614-11328316db92 + - 2b38bf46-904a-4a61-af25-f209797b9451 status: 200 OK code: 200 - duration: 37.507833ms + duration: 33.302292ms - id: 58 request: proto: HTTP/1.1 @@ -2899,7 +2897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -2909,7 +2907,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2918,9 +2916,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:47 GMT + - Mon, 30 Jun 2025 15:40:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2928,10 +2926,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13348184-199b-4729-9a66-89c618e7ecb5 + - 63a0d3b4-60f6-42cc-8223-5537be9a7b7a status: 200 OK code: 200 - duration: 74.956667ms + duration: 74.474292ms - id: 59 request: proto: HTTP/1.1 @@ -2948,7 +2946,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -2956,20 +2954,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2427 + content_length: 2428 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2427" + - "2428" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2977,10 +2975,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6808d296-dcba-4f72-aaea-a26943e1081a + - 7a6aeb87-fdac-4581-a455-d19692b55e8b status: 200 OK code: 200 - duration: 180.522791ms + duration: 207.443958ms - id: 60 request: proto: HTTP/1.1 @@ -2997,7 +2995,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=d0d80aa4-05a5-4fad-882c-c4bca8bab785&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=150a2db3-8a8c-400f-b2eb-5b49b1e5fb29&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=3d25c26d-ce49-4da6-8d23-eae520bfdd13&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=0331babf-3da0-4209-97d9-90f5ada936e1&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3005,20 +3003,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1072 + content_length: 1070 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a757:2e0e:3212:5471:31e0/64","created_at":"2025-06-30T15:02:19.541880Z","id":"cd6f4e6c-f99f-4a92-bb6a-72c121450821","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"4afbcf9a-7f49-4f99-8680-2151c13acb46"},"tags":[],"updated_at":"2025-06-30T15:02:19.541880Z","zone":null},{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:fb63:cbb9:3c:310d:9c0f/64","created_at":"2025-06-30T15:40:07.941186Z","id":"30dc1d9e-1609-4b40-8715-eb570920e60e","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"946d0044-596a-4b79-8f5f-66e5e893ac1f"},"tags":[],"updated_at":"2025-06-30T15:40:07.941186Z","zone":null},{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1072" + - "1070" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3026,10 +3024,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31d96914-02f5-48bc-93ab-dea592b0297e + - d3ef3513-dc7a-46a3-b11d-3fe29476baaf status: 200 OK code: 200 - duration: 65.126167ms + duration: 75.163917ms - id: 61 request: proto: HTTP/1.1 @@ -3046,7 +3044,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3056,7 +3054,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -3065,9 +3063,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3075,10 +3073,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a01be2be-7f4f-4cf3-a2e3-7008005baa98 + - 77a544c1-1ec5-48f5-ba08-65104e59a1ac status: 200 OK code: 200 - duration: 64.390708ms + duration: 44.877875ms - id: 62 request: proto: HTTP/1.1 @@ -3095,7 +3093,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a method: GET response: proto: HTTP/2.0 @@ -3103,20 +3101,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1923 + content_length: 1926 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:46.682730Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"44c0a83c-506b-468e-994b-5021386d4271","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-zealous-dubinsky","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.52.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:02:46.682730Z"}' + body: '{"created_at":"2025-06-30T15:40:40.344312Z","failover_host":null,"forward_port":80,"forward_port_algorithm":"roundrobin","forward_protocol":"http","health_check":{"check_delay":60000,"check_max_retries":2,"check_send_proxy":false,"check_timeout":30000,"port":80,"tcp_config":{},"transient_check_delay":"0.500s"},"id":"493ae4e5-d66e-425d-8f6a-3fa431b9c20a","ignore_ssl_server_verify":false,"lb":{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"},"max_connections":null,"max_retries":3,"name":"tf-lb-bkd-suspicious-moore","on_marked_down_action":"on_marked_down_action_none","pool":["172.16.84.2"],"proxy_protocol":"proxy_protocol_none","redispatch_attempt_count":null,"send_proxy_v2":false,"ssl_bridging":false,"sticky_sessions":"none","sticky_sessions_cookie_name":"","timeout_connect":5000,"timeout_queue":"0s","timeout_server":300000,"timeout_tunnel":900000,"updated_at":"2025-06-30T15:40:40.344312Z"}' headers: Content-Length: - - "1923" + - "1926" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3124,10 +3122,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f564152c-b87a-4a58-a6df-2537628a1d9a + - 2158c205-bdc8-41cb-ba3d-08752fcb531d status: 200 OK code: 200 - duration: 76.860459ms + duration: 88.468583ms - id: 63 request: proto: HTTP/1.1 @@ -3144,7 +3142,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -3152,20 +3150,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3173,10 +3171,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91c2f2f6-f642-4358-b7cc-3f1d1d402530 + - ed1d7b64-6f95-4c2d-b8cd-c58cc5d863dc status: 200 OK code: 200 - duration: 79.041292ms + duration: 81.007125ms - id: 64 request: proto: HTTP/1.1 @@ -3193,7 +3191,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A11%3A34%3A06&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A16%3A5b%3A18&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -3203,7 +3201,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:02:16.906451Z","id":"e937bc11-c818-4443-a326-9aa4263816fe","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","mac_address":"02:00:00:11:34:06","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"9c79c077-72a8-4959-9658-c62d01ab3a6b"},"tags":[],"updated_at":"2025-06-30T15:02:16.906451Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.84.2/22","created_at":"2025-06-30T15:40:05.460577Z","id":"5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"0331babf-3da0-4209-97d9-90f5ada936e1","mac_address":"02:00:00:16:5B:18","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"09b83aac-8bd7-42cb-bcc8-8d6be490b08f"},"tags":[],"updated_at":"2025-06-30T15:40:05.460577Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -3212,9 +3210,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3222,10 +3220,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cfad2f5-640a-4e93-9075-6e610e7b2ab1 + - 73437c29-635a-4999-ae30-efd6b2ad9777 status: 200 OK code: 200 - duration: 51.578667ms + duration: 52.25125ms - id: 65 request: proto: HTTP/1.1 @@ -3242,7 +3240,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -3250,20 +3248,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":1,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:47.008466Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":1,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:40.799678Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:48 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3271,10 +3269,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ac7068bd-5c22-4b9a-bcbf-f01e5b55db09 + - 6d67e65b-e7fe-4215-86fb-2a831db84be1 status: 200 OK code: 200 - duration: 69.8275ms + duration: 66.884417ms - id: 66 request: proto: HTTP/1.1 @@ -3291,7 +3289,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/44c0a83c-506b-468e-994b-5021386d4271 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/backends/493ae4e5-d66e-425d-8f6a-3fa431b9c20a method: DELETE response: proto: HTTP/2.0 @@ -3308,9 +3306,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3318,10 +3316,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea4defd8-c71b-4184-95dd-feed5d6e4f04 + - c34e03c1-f2bb-400f-9cb0-b4b4baabc883 status: 204 No Content code: 204 - duration: 403.270916ms + duration: 404.349042ms - id: 67 request: proto: HTTP/1.1 @@ -3338,7 +3336,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -3346,20 +3344,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1075 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"pending","updated_at":"2025-06-30T15:40:42.892847Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1075" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3367,10 +3365,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1a2599e9-4bae-4209-8322-4e30cb2a41dd + - 2861846b-6232-4e11-b953-91e71ace9fbe status: 200 OK code: 200 - duration: 86.848583ms + duration: 97.946084ms - id: 68 request: proto: HTTP/1.1 @@ -3387,7 +3385,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -3395,20 +3393,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1070 + content_length: 1073 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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-06-30T15:02:11.685277Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:43.240062Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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-06-30T15:39:59.041780Z","zone":"fr-par-1"}' headers: Content-Length: - - "1070" + - "1073" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3416,10 +3414,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd15d340-cd9c-417d-a423-aedc21c927f0 + - 2065ecda-eedd-4cc2-a117-b13a1cbcfedc status: 200 OK code: 200 - duration: 60.541542ms + duration: 57.435959ms - id: 69 request: proto: HTTP/1.1 @@ -3436,7 +3434,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -3446,7 +3444,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:14.805069+00:00","id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","ipam_ip_ids":["e937bc11-c818-4443-a326-9aa4263816fe","cd6f4e6c-f99f-4a92-bb6a-72c121450821"],"mac_address":"02:00:00:11:34:06","modification_date":"2025-06-30T15:02:42.410473+00:00","private_network_id":"d0d80aa4-05a5-4fad-882c-c4bca8bab785","server_id":"6efd28dc-c163-413c-9739-583f9268d7b7","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:03.447361+00:00","id":"0331babf-3da0-4209-97d9-90f5ada936e1","ipam_ip_ids":["5a22a49c-6b4a-483e-a6e8-19cb0e0f6c1d","30dc1d9e-1609-4b40-8715-eb570920e60e"],"mac_address":"02:00:00:16:5b:18","modification_date":"2025-06-30T15:40:36.811708+00:00","private_network_id":"3d25c26d-ce49-4da6-8d23-eae520bfdd13","server_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -3455,9 +3453,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3465,10 +3463,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 45a58171-6410-40dc-9847-ae543365d5b7 + - 54e72010-7e72-4c3a-89de-03d2dc8663a9 status: 200 OK code: 200 - duration: 65.050458ms + duration: 58.305541ms - id: 70 request: proto: HTTP/1.1 @@ -3485,7 +3483,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505?release_ip=false + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0?release_ip=false method: DELETE response: proto: HTTP/2.0 @@ -3502,9 +3500,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3512,10 +3510,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e7e7a415-fc66-40fe-83b1-fad96f8607ec + - 8d73aac3-a96c-4998-b2ef-b0273d5ba206 status: 204 No Content code: 204 - duration: 332.196166ms + duration: 319.028333ms - id: 71 request: proto: HTTP/1.1 @@ -3532,7 +3530,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -3540,20 +3538,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1074 + content_length: 1077 uncompressed: false - body: '{"backend_count":0,"created_at":"2025-06-30T15:02:07.683178Z","description":"","frontend_count":0,"id":"86758520-8314-4d22-864b-465bd97aa505","instances":[{"created_at":"2025-06-30T14:23:23.052020Z","id":"3d408e26-6831-43f4-ae4c-cdf93f0fe518","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:02:49.178126Z","zone":"fr-par-1"}],"ip":[{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":"86758520-8314-4d22-864b-465bd97aa505","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-brave-gagarin","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_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:02:49.389171Z","zone":"fr-par-1"}' + body: '{"backend_count":0,"created_at":"2025-06-30T15:39:55.043034Z","description":"","frontend_count":0,"id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","instances":[{"created_at":"2025-06-30T15:30:33.135196Z","id":"d79a93bc-1af0-4cbb-8c45-9c0d5e10f9bc","ip_address":"","region":"fr-par","status":"ready","updated_at":"2025-06-30T15:40:43.240062Z","zone":"fr-par-1"}],"ip":[{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":"66b5c0d0-e652-46b4-9eec-25aa607956e0","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}],"name":"tf-lb-dazzling-gagarin","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_delete","subscriber":null,"tags":[],"type":"lb-s","updated_at":"2025-06-30T15:40:43.401908Z","zone":"fr-par-1"}' headers: Content-Length: - - "1074" + - "1077" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3561,10 +3559,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfa76435-c233-405e-bd34-1f95339acb5c + - 8e34d651-3727-42bf-9825-1324923f611a status: 200 OK code: 200 - duration: 68.839ms + duration: 81.107958ms - id: 72 request: proto: HTTP/1.1 @@ -3581,7 +3579,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: DELETE response: proto: HTTP/2.0 @@ -3598,9 +3596,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3608,10 +3606,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d26ae09-7928-442f-a5a0-1b305dbe599e + - ebc5a542-ebed-4949-b7ec-28cc613e8eb6 status: 204 No Content code: 204 - duration: 596.512667ms + duration: 529.941041ms - id: 73 request: proto: HTTP/1.1 @@ -3628,7 +3626,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/private_nics/150a2db3-8a8c-400f-b2eb-5b49b1e5fb29 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/private_nics/0331babf-3da0-4209-97d9-90f5ada936e1 method: GET response: proto: HTTP/2.0 @@ -3638,7 +3636,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"150a2db3-8a8c-400f-b2eb-5b49b1e5fb29","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"0331babf-3da0-4209-97d9-90f5ada936e1","type":"not_found"}' headers: Content-Length: - "148" @@ -3647,9 +3645,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:49 GMT + - Mon, 30 Jun 2025 15:40:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3657,10 +3655,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 56726e35-d6dc-466b-be32-89bbfb4359ba + - 865e56b9-4345-4173-8f5f-9218fcd11d23 status: 404 Not Found code: 404 - duration: 60.911958ms + duration: 67.519542ms - id: 74 request: proto: HTTP/1.1 @@ -3677,7 +3675,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -3685,20 +3683,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1969 + content_length: 1970 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:11.857829+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:39:59.497517+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1969" + - "1970" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:50 GMT + - Mon, 30 Jun 2025 15:40:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3706,10 +3704,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0d6625f-21d7-4d5c-acfc-4be5bf9bf026 + - 6fac3bef-a211-455e-a877-f7c9a99bfc74 status: 200 OK code: 200 - duration: 199.687667ms + duration: 200.839833ms - id: 75 request: proto: HTTP/1.1 @@ -3726,7 +3724,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -3736,7 +3734,7 @@ interactions: trailer: {} content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:07.932395Z","id":"f497caf5-bf26-4169-9868-d636ac3e15c5","product_resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:07.932395Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.695778Z","id":"a74061ad-f39a-4552-bf68-84e0cea6db7a","product_resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.695778Z","zone":"fr-par-1"}' headers: Content-Length: - "686" @@ -3745,9 +3743,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:50 GMT + - Mon, 30 Jun 2025 15:40:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3755,10 +3753,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e9f9da0-4321-4b9f-b53a-68ac989f046b + - d6d7b3f1-12e4-4c3f-96c1-40e6810e3a2f status: 200 OK code: 200 - duration: 42.642875ms + duration: 41.811167ms - id: 76 request: proto: HTTP/1.1 @@ -3777,7 +3775,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action method: POST response: proto: HTTP/2.0 @@ -3787,7 +3785,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7/action","href_result":"/servers/6efd28dc-c163-413c-9739-583f9268d7b7","id":"657526a0-f7ec-4007-82a2-ec0a9473f546","progress":0,"started_at":"2025-06-30T15:02:50.485768+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75/action","href_result":"/servers/f5979140-2069-4ec9-ba75-1f1b03893b75","id":"93fdec91-d48d-4d14-8107-dcfb8d574096","progress":0,"started_at":"2025-06-30T15:40:44.420415+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3796,11 +3794,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:50 GMT + - Mon, 30 Jun 2025 15:40:44 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/657526a0-f7ec-4007-82a2-ec0a9473f546 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/93fdec91-d48d-4d14-8107-dcfb8d574096 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3808,10 +3806,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c17301c3-4cb3-4f43-ac38-bb00992c532d + - 86fe8001-f234-4db6-a5a7-b44b3c7d0373 status: 202 Accepted code: 202 - duration: 394.035834ms + duration: 319.937291ms - id: 77 request: proto: HTTP/1.1 @@ -3828,7 +3826,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -3836,20 +3834,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1930" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:50 GMT + - Mon, 30 Jun 2025 15:40:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3857,10 +3855,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95eae103-ca67-4239-b5fe-85573e68bbab + - ca4b5249-3b98-4330-8248-a365d0fa1d4b status: 200 OK code: 200 - duration: 364.602458ms + duration: 165.083667ms - id: 78 request: proto: HTTP/1.1 @@ -3877,7 +3875,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d0d80aa4-05a5-4fad-882c-c4bca8bab785 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/3d25c26d-ce49-4da6-8d23-eae520bfdd13 method: DELETE response: proto: HTTP/2.0 @@ -3894,9 +3892,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:53 GMT + - Mon, 30 Jun 2025 15:40:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3904,10 +3902,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19ed661e-6544-44c8-b520-fcf8af288c83 + - 4d85be2f-8252-431d-9d5f-f677ef0dab0f status: 204 No Content code: 204 - duration: 4.200175959s + duration: 1.796258125s - id: 79 request: proto: HTTP/1.1 @@ -3924,7 +3922,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/c74d9233-268f-41a0-8a08-6aec971f4e69 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4d387c1a-5e4d-4c82-8b8f-782e1508e5ba method: DELETE response: proto: HTTP/2.0 @@ -3941,9 +3939,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:54 GMT + - Mon, 30 Jun 2025 15:40:45 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3951,10 +3949,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c70090e5-b389-4157-8b09-e6e0c0f91189 + - 06a3ac92-e598-408d-8c64-2076ed7bcc1a status: 204 No Content code: 204 - duration: 107.8355ms + duration: 98.714084ms - id: 80 request: proto: HTTP/1.1 @@ -3971,7 +3969,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -3979,20 +3977,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1930" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:56 GMT + - Mon, 30 Jun 2025 15:40:49 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4000,10 +3998,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c10b69e3-c4b7-40de-95b6-9e5d32125150 + - 96b9947f-b1d8-48ff-88e3-3d87433f2b6b status: 200 OK code: 200 - duration: 161.163583ms + duration: 144.966041ms - id: 81 request: proto: HTTP/1.1 @@ -4020,7 +4018,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4028,20 +4026,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1930" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:01 GMT + - Mon, 30 Jun 2025 15:40:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4049,10 +4047,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 111ffc2b-95ed-47a6-aa6c-3fb59618f42a + - 0810db7a-1c92-4755-a2c3-2f01132e9cf1 status: 200 OK code: 200 - duration: 180.559334ms + duration: 144.945041ms - id: 82 request: proto: HTTP/1.1 @@ -4069,7 +4067,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4077,20 +4075,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1930" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:06 GMT + - Mon, 30 Jun 2025 15:41:00 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4098,10 +4096,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16a065fc-e9cf-4a21-bb7d-71546c31a704 + - f0e57766-6660-463e-bd38-7c65515d3c69 status: 200 OK code: 200 - duration: 196.111125ms + duration: 174.420292ms - id: 83 request: proto: HTTP/1.1 @@ -4118,7 +4116,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4126,20 +4124,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1930 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:40:44.212035+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1930" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:11 GMT + - Mon, 30 Jun 2025 15:41:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4147,10 +4145,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 19c2be3a-1340-4a4c-8352-11d586c62f7d + - cc356a13-3f2b-483f-8391-521f751b5f5f status: 200 OK code: 200 - duration: 145.962833ms + duration: 180.872958ms - id: 84 request: proto: HTTP/1.1 @@ -4167,7 +4165,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4175,20 +4173,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1929 + content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"501","node_id":"12","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:02:50.238191+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:41:07.805324+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1929" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:16 GMT + - Mon, 30 Jun 2025 15:41:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4196,10 +4194,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d7a8397-0bfa-47f4-9531-f1318e8fc427 + - 6de51a84-367b-41e8-af3d-414ff8d14688 status: 200 OK code: 200 - duration: 150.409375ms + duration: 144.98425ms - id: 85 request: proto: HTTP/1.1 @@ -4216,7 +4214,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4224,20 +4222,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 1814 uncompressed: false - body: '{"message":"lbs not Found"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.260472+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"f5979140-2069-4ec9-ba75-1f1b03893b75","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:0b","maintenances":[],"modification_date":"2025-06-30T15:41:07.805324+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"2b95b748-4437-4516-a15a-5de53eba3094","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "27" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:19 GMT + - Mon, 30 Jun 2025 15:41:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4245,10 +4243,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ccbc376-7263-4950-8031-4419c674bbea - status: 404 Not Found - code: 404 - duration: 24.616583ms + - cc4b904c-41e7-47b1-97b6-42c12ee0bc2c + status: 200 OK + code: 200 + duration: 146.469625ms - id: 86 request: proto: HTTP/1.1 @@ -4265,28 +4263,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/86758520-8314-4d22-864b-465bd97aa505 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 27 + content_length: 0 uncompressed: false - body: '{"message":"lbs not Found"}' + body: "" headers: - Content-Length: - - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:19 GMT + - Mon, 30 Jun 2025 15:41:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4294,10 +4290,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c484ce13-d223-49e4-a832-9604a92c5b4f - status: 404 Not Found - code: 404 - duration: 498.640916ms + - fe84ae35-8f21-4a74-82ff-c71e5e8cad75 + status: 204 No Content + code: 204 + duration: 424.485291ms - id: 87 request: proto: HTTP/1.1 @@ -4314,7 +4310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4322,20 +4318,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 288 + content_length: 143 uncompressed: false - body: '{"id":"0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768","ip_address":"51.15.130.226","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-130-226.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","type":"not_found"}' headers: Content-Length: - - "288" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:20 GMT + - Mon, 30 Jun 2025 15:41:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4343,10 +4339,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 853bf8d0-8ecf-44e8-8716-2539a42a1268 - status: 200 OK - code: 200 - duration: 46.163709ms + - 77398b52-e313-4a4e-ac8e-d9a7a608a394 + status: 404 Not Found + code: 404 + duration: 108.642416ms - id: 88 request: proto: HTTP/1.1 @@ -4363,54 +4359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/0e017d8a-15cf-4e1e-9b05-c7dbf3c4d768 - method: DELETE - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 0 - uncompressed: false - body: "" - headers: - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:03:20 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 899e07b6-e004-4d64-918a-091191c1f686 - status: 204 No Content - code: 204 - duration: 394.766708ms - - id: 89 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -4418,20 +4367,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 143 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:03:20.212639+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"2b95b748-4437-4516-a15a-5de53eba3094","type":"not_found"}' headers: Content-Length: - - "1814" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:21 GMT + - Mon, 30 Jun 2025 15:41:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4439,11 +4388,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d40be56-e785-459a-981f-ab0f7e4f3b8b - status: 200 OK - code: 200 - duration: 165.3825ms - - id: 90 + - 96412d50-b1e6-4951-a4bd-bec0f721fa79 + status: 404 Not Found + code: 404 + duration: 38.563291ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4459,7 +4408,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: GET response: proto: HTTP/2.0 @@ -4467,20 +4416,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 484 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.790903+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"6efd28dc-c163-413c-9739-583f9268d7b7","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:25","maintenances":[],"modification_date":"2025-06-30T15:03:20.212639+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:39:55.695778Z","id":"2b95b748-4437-4516-a15a-5de53eba3094","last_detached_at":"2025-06-30T15:41:10.980693Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:41:10.980693Z","zone":"fr-par-1"}' headers: Content-Length: - - "1814" + - "484" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4488,11 +4437,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abf57fe7-1d48-46e0-bc3f-253e6cd89ceb + - 5f7a41d6-8bb4-47f7-b505-799935e5117e status: 200 OK code: 200 - duration: 152.444875ms - - id: 91 + duration: 43.929416ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4508,7 +4457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/2b95b748-4437-4516-a15a-5de53eba3094 method: DELETE response: proto: HTTP/2.0 @@ -4525,9 +4474,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4535,11 +4484,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0c610138-29bd-4bee-9fa3-8031f9464191 + - 50d444f6-f94e-4298-98c1-1a2768430a56 status: 204 No Content code: 204 - duration: 257.222875ms - - id: 92 + duration: 93.089417ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4555,7 +4504,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -4563,20 +4512,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 27 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","type":"not_found"}' + body: '{"message":"lbs not Found"}' headers: Content-Length: - - "143" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4584,11 +4533,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4a43d4d6-85c3-40ea-90b2-fca059c2024a + - 581fd5b1-d0ee-4f11-a001-a24e7780768a status: 404 Not Found code: 404 - duration: 79.708542ms - - id: 93 + duration: 23.857625ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4604,7 +4553,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/lbs/66b5c0d0-e652-46b4-9eec-25aa607956e0 method: GET response: proto: HTTP/2.0 @@ -4612,20 +4561,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 27 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","type":"not_found"}' + body: '{"message":"lbs not Found"}' headers: Content-Length: - - "143" + - "27" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4633,11 +4582,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 936bb199-55a7-4648-bc99-93f747087ffd + - 5d509777-5576-4e84-8d3d-8971b0980c6b status: 404 Not Found code: 404 - duration: 35.874916ms - - id: 94 + duration: 29.91975ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4653,7 +4602,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 method: GET response: proto: HTTP/2.0 @@ -4661,20 +4610,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 484 + content_length: 288 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.932395Z","id":"16f67c36-957b-46aa-9c0d-020e90a8a1e4","last_detached_at":"2025-06-30T15:03:22.415670Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:03:22.415670Z","zone":"fr-par-1"}' + body: '{"id":"6249bf48-2968-4c8a-bdf0-742e6bcf55a9","ip_address":"51.15.197.149","lb_id":null,"organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","reverse":"51-15-197-149.lb.fr-par.scw.cloud","tags":[],"zone":"fr-par-1"}' headers: Content-Length: - - "484" + - "288" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4682,11 +4631,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 23b636df-4a3c-4594-9776-905583238390 + - a139ab0d-7574-4393-a622-504b9d98459f status: 200 OK code: 200 - duration: 52.416709ms - - id: 95 + duration: 52.713083ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4702,7 +4651,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/16f67c36-957b-46aa-9c0d-020e90a8a1e4 + url: https://api.scaleway.com/lb/v1/zones/fr-par-1/ips/6249bf48-2968-4c8a-bdf0-742e6bcf55a9 method: DELETE response: proto: HTTP/2.0 @@ -4719,9 +4668,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4729,11 +4678,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22e29a1b-41a4-4308-a8d0-63f1f386e5d4 + - fa885fae-5bd0-4bae-afae-832ffe1e52b0 status: 204 No Content code: 204 - duration: 121.8405ms - - id: 96 + duration: 396.646708ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4749,7 +4698,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/6efd28dc-c163-413c-9739-583f9268d7b7 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/f5979140-2069-4ec9-ba75-1f1b03893b75 method: GET response: proto: HTTP/2.0 @@ -4759,7 +4708,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"6efd28dc-c163-413c-9739-583f9268d7b7","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"f5979140-2069-4ec9-ba75-1f1b03893b75","type":"not_found"}' headers: Content-Length: - "143" @@ -4768,9 +4717,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:41:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4778,7 +4727,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 431bac28-2667-48c4-a9b7-d28a80720649 + - 7dcbb95e-dcfd-4f57-b109-a60eb6e871a2 status: 404 Not Found code: 404 - duration: 120.330041ms + duration: 82.697875ms diff --git a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml index 9584e7b556..2e705eff8f 100644 --- a/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamip-instance.cassette.yaml @@ -6,41 +6,41 @@ interactions: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 132 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 39208 + content_length: 424 uncompressed: false - body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":false,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.830839Z"}' headers: Content-Length: - - "39208" + - "424" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT - Link: - - ; rel="next",; rel="last" + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,12 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 38184132-487d-4a12-96aa-5ab00266bd2b - X-Total-Count: - - "75" + - ac3a2f83-a39c-4df0-8f6a-09b97185e50e status: 200 OK code: 200 - duration: 54.77825ms + duration: 181.287875ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=1 method: GET response: proto: HTTP/2.0 @@ -78,22 +76,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 39208 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"servers":{"COPARM1-16C-64G":{"alt_names":[],"arch":"arm64","block_bandwidth":671088640,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3454,"mig_profile":null,"monthly_price":252.14,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-2C-8G":{"alt_names":[],"arch":"arm64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0426,"mig_profile":null,"monthly_price":31.1,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-32C-128G":{"alt_names":[],"arch":"arm64","block_bandwidth":1342177280,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.6935,"mig_profile":null,"monthly_price":506.26,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-4C-16G":{"alt_names":[],"arch":"arm64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0857,"mig_profile":null,"monthly_price":62.56,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"COPARM1-8C-32G":{"alt_names":[],"arch":"arm64","block_bandwidth":335544320,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1724,"mig_profile":null,"monthly_price":125.85,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"DEV1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":209715200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.04952,"mig_profile":null,"monthly_price":36.1496,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":80000000000,"min_size":0}},"DEV1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":157286400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.02556,"mig_profile":null,"monthly_price":18.6588,"ncpus":3,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":40000000000,"min_size":0}},"DEV1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":104857600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.01368,"mig_profile":null,"monthly_price":9.9864,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":20000000000,"min_size":0}},"DEV1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.07308,"mig_profile":null,"monthly_price":53.3484,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":12884901888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":120000000000,"min_size":0}},"ENT1-2XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":21474836480,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":3.53,"mig_profile":null,"monthly_price":2576.9,"ncpus":96,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"ENT1-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.655,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"GP1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":1073741824,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7894,"mig_profile":null,"monthly_price":576.262,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4064,"mig_profile":null,"monthly_price":296.672,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2042,"mig_profile":null,"monthly_price":149.066,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":300000000000,"min_size":0}},"GP1-XL":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.6714,"mig_profile":null,"monthly_price":1220.122,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":600000000000,"min_size":0}},"GP1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":314572800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1016,"mig_profile":null,"monthly_price":74.168,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":150000000000,"min_size":0}},"L4-1-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":0.75,"mig_profile":null,"monthly_price":547.5,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":2500000000,"internet_bandwidth":2500000000}],"ipv6_support":true,"sum_internal_bandwidth":2500000000,"sum_internet_bandwidth":2500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":51539607552,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-2-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1572864000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":2,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":1.5,"mig_profile":null,"monthly_price":1095,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-4-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":2621440000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":4,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":3,"mig_profile":null,"monthly_price":2190,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"L4-8-24G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5242880000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":8,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":25769803776,"gpu_name":"L4"},"hourly_price":6,"mig_profile":null,"monthly_price":4380,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":20000000000,"internet_bandwidth":20000000000}],"ipv6_support":true,"sum_internal_bandwidth":20000000000,"sum_internet_bandwidth":20000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-MICRO":{"alt_names":[],"arch":"x86_64","block_bandwidth":167772160,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.054,"mig_profile":null,"monthly_price":39.42,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-NANO":{"alt_names":[],"arch":"x86_64","block_bandwidth":83886080,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.027,"mig_profile":null,"monthly_price":19.71,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PLAY2-PICO":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.014,"mig_profile":null,"monthly_price":10.22,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.59,"mig_profile":null,"monthly_price":430.7,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-16C-64G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.4567,"mig_profile":null,"monthly_price":1063.391,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0735,"mig_profile":null,"monthly_price":53.66,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-2C-8G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1823,"mig_profile":null,"monthly_price":133.079,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.18,"mig_profile":null,"monthly_price":861.4,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-32C-128G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.9133,"mig_profile":null,"monthly_price":2126.709,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-48C-192G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.77,"mig_profile":null,"monthly_price":1274.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":206158430208,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.147,"mig_profile":null,"monthly_price":107.31,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-4C-16G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.3637,"mig_profile":null,"monthly_price":265.501,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-64C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.35,"mig_profile":null,"monthly_price":1715.5,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.29,"mig_profile":null,"monthly_price":211.7,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-8C-32G-WIN":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7233,"mig_profile":null,"monthly_price":528.009,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-16C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4256,"mig_profile":null,"monthly_price":310.69,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-2C-4G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.0532,"mig_profile":null,"monthly_price":38.84,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-32C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.8512,"mig_profile":null,"monthly_price":621.38,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-48C-96G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.27,"mig_profile":null,"monthly_price":914.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":103079215104,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-4C-8G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.1064,"mig_profile":null,"monthly_price":77.67,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-64C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.7024,"mig_profile":null,"monthly_price":1242.75,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HC-8C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2128,"mig_profile":null,"monthly_price":155.34,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-16C-128G":{"alt_names":[],"arch":"x86_64","block_bandwidth":3355443200,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":4,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.824,"mig_profile":null,"monthly_price":601.52,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3200000000,"internet_bandwidth":3200000000}],"ipv6_support":true,"sum_internal_bandwidth":3200000000,"sum_internet_bandwidth":3200000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-2C-16G":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.103,"mig_profile":null,"monthly_price":75.19,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-32C-256G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":8,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":1.648,"mig_profile":null,"monthly_price":1203.04,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6400000000,"internet_bandwidth":6400000000}],"ipv6_support":true,"sum_internal_bandwidth":6400000000,"sum_internet_bandwidth":6400000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":274877906944,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}}}}' headers: Content-Length: - - "19730" + - "39208" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Link: - - ; rel="first",; rel="previous",; rel="last" + - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,131 +99,31 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65bebdab-b551-4f8a-9478-1e44318cc751 + - b8c46327-550f-4a99-9730-4a02d876037b X-Total-Count: - "75" status: 200 OK code: 200 - duration: 68.5975ms + duration: 180.499583ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 132 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 28 - uncompressed: false - body: '{"message":"internal error"}' - headers: - Content-Length: - - "28" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 42532334-3d3b-4f47-af89-027538695e59 - status: 500 Internal Server Error - code: 500 - duration: 152.122292ms - - id: 3 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1185 - uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' - headers: - Content-Length: - - "1185" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 12b0e5b6-b2b7-441d-8a9d-9430bc616a92 - status: 200 OK - code: 200 - duration: 77.394417ms - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 321 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -233,71 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 - uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1814" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:08 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b66d751a-760b-4a8d-bb26-33dab7d428de - status: 201 Created - code: 201 - duration: 877.97825ms - - id: 5 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1814 + content_length: 423 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.884867Z"}' headers: Content-Length: - - "1814" + - "423" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,11 +152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8966757e-284d-4e06-9b9b-e2e1f9ff828c + - 1c01e216-ff47-4e28-91bb-7f77d49eed86 status: 200 OK code: 200 - duration: 132.995291ms - - id: 6 + duration: 40.09275ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -325,7 +172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -333,20 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1814 + content_length: 19730 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:07.803028+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "1814" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:08 GMT + - Mon, 30 Jun 2025 15:39:54 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,11 +203,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 31a3812b-c719-4655-86db-348a6e6beb38 + - 96f158e7-97cf-44a4-9f5a-fcc705265dfc + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 136.414666ms - - id: 7 + duration: 54.485458ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -374,110 +225,8 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 687 - uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attaching","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "687" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:08 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 59260846-b1dc-4219-957a-39fa595aa9b9 - status: 200 OK - code: 200 - duration: 54.250709ms - - id: 8 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 132 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 424 - uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":false,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.637791Z"}' - headers: - Content-Length: - - "424" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:09 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 1ec4cb81-881d-4c1f-bbcc-356815d6aafc - status: 200 OK - code: 200 - duration: 92.316542ms - - id: 9 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 2 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc/enable-custom-routes-propagation - method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -486,7 +235,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' + body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.884867Z"}' headers: Content-Length: - "423" @@ -495,9 +244,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,11 +254,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6cecd011-b899-4bad-a222-49f54f6b1ca7 + - 5cc6b0d5-8f76-4374-8ee5-777030fec823 status: 200 OK code: 200 - duration: 33.472875ms - - id: 10 + duration: 29.138209ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -525,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=ubuntu_jammy&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -533,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 423 + content_length: 1185 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","STARDUST1-S","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-48C-192G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-48C-384G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-48C-96G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10"],"id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"},{"arch":"arm64","compatible_commercial_types":["COPARM1-2C-8G","COPARM1-4C-16G","COPARM1-8C-32G","COPARM1-16C-64G","COPARM1-32C-128G"],"id":"f030fe26-9c81-4e0a-adc3-4a871d4e149a","label":"ubuntu_jammy","type":"instance_sbs","zone":"fr-par-1"}],"total_count":2}' headers: Content-Length: - - "423" + - "1185" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:39:54 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -554,11 +303,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dbbe336f-c946-4a47-a38a-b4d494a8627d + - da650177-c312-447e-a5a1-cc9e673c9b2a status: 200 OK code: 200 - duration: 49.155833ms - - id: 11 + duration: 79.672834ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -569,7 +318,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","default_route_propagation_enabled":false}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -586,7 +335,7 @@ interactions: trailer: {} content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' + body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' headers: Content-Length: - "1082" @@ -595,9 +344,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -605,11 +354,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dc26add6-0194-4cce-a351-d797d21163d9 + - aa9033e0-0768-4b3c-a24d-75c969d21f03 status: 200 OK code: 200 - duration: 668.102292ms - - id: 12 + duration: 670.738917ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -625,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 method: GET response: proto: HTTP/2.0 @@ -635,7 +384,7 @@ interactions: trailer: {} content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' + body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' headers: Content-Length: - "1082" @@ -644,58 +393,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 332fcb2f-767c-4ff4-a365-af7bca057bb2 - status: 200 OK - code: 200 - duration: 47.963625ms - - id: 13 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 686 - uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' - headers: - Content-Length: - - "686" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -703,29 +403,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 634499da-1f37-4519-875d-fb924f557b3c + - 6bdc02c2-1933-47a1-972e-81c7f4ef88c6 status: 200 OK code: 200 - duration: 42.544166ms - - id: 14 + duration: 33.541458ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 321 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"name":"tf-tests-ipam-ip-datasource-instance","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":["terraform-test","data_scaleway_instance_servers","basic"]}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -733,22 +433,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1814 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action","href_result":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","id":"305216fc-fc7c-48c7-a230-58735921b4be","progress":0,"started_at":"2025-06-30T15:02:14.193324+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:14 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/305216fc-fc7c-48c7-a230-58735921b4be + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,60 +456,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2ede365d-c43a-407f-85ff-3e3b1562861a - status: 202 Accepted - code: 202 - duration: 379.27275ms - - id: 15 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1836 - uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:13.895221+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' - headers: - Content-Length: - - "1836" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:14 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2a8a85bd-9ea7-44ed-b42e-67193bdf4318 - status: 200 OK - code: 200 - duration: 156.999459ms - - id: 16 + - 541cbd9a-2854-43d2-94b9-859a10e8d098 + status: 201 Created + code: 201 + duration: 724.889416ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -825,7 +476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -833,20 +484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:19 GMT + - Mon, 30 Jun 2025 15:39:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,11 +505,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7b86dd16-7544-4856-bc05-d65862380c91 + - e389c19c-72d6-470b-a502-9782b8aee39d status: 200 OK code: 200 - duration: 218.737542ms - - id: 17 + duration: 162.282208ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -874,7 +525,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -882,20 +533,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:55.165458+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1814" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:19 GMT + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,60 +554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5ebb9409-4b23-467c-9f06-37d224b2d6d3 + - 5e8c03a2-aa25-4a9e-9785-3286efe4cfa9 status: 200 OK code: 200 - duration: 154.475125ms - - id: 18 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 143 - uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' - headers: - Content-Length: - - "143" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:19 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 9240cf2b-9e60-4d86-bce3-63c2a8ddf630 - status: 404 Not Found - code: 404 - duration: 34.389958ms - - id: 19 + duration: 131.691375ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -972,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -982,7 +584,7 @@ interactions: trailer: {} content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' headers: Content-Length: - "686" @@ -991,9 +593,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:19 GMT + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,48 +603,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be216691-8de3-4841-8534-1105dd63cba8 + - 907ee4f5-a8e6-44b5-8343-347aaeb4d5d6 status: 200 OK code: 200 - duration: 46.698875ms - - id: 20 + duration: 56.268458ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"action":"poweron"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/user_data - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/action + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 17 + content_length: 357 uncompressed: false - body: '{"user_data":[]}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/63b807af-58c6-4499-a6c3-664762f3df13/action","href_result":"/servers/63b807af-58c6-4499-a6c3-664762f3df13","id":"4f2eea4d-3743-4d22-9d00-9590c16b3028","progress":0,"started_at":"2025-06-30T15:39:56.314949+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "17" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:19 GMT + - Mon, 30 Jun 2025 15:39:56 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/4f2eea4d-3743-4d22-9d00-9590c16b3028 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1050,11 +656,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 173c8f36-98e4-4119-bdad-b408a17d4b01 - status: 200 OK - code: 200 - duration: 67.682166ms - - id: 21 + - c086af66-c559-49eb-8f0c-7deaba1ff03f + status: 202 Accepted + code: 202 + duration: 275.267708ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -1070,7 +676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -1078,22 +684,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 20 + content_length: 1836 uncompressed: false - body: '{"private_nics":[]}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:56.105460+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "20" + - "1836" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:19 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:39:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1101,13 +705,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e38e57b-0d3d-46ce-941a-8e6005ceae96 - X-Total-Count: - - "0" + - 2f545694-97cd-4e25-87f9-79095dd6f81a status: 200 OK code: 200 - duration: 68.61575ms - - id: 22 + duration: 165.965875ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -1123,7 +725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -1131,20 +733,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:20 GMT + - Mon, 30 Jun 2025 15:40:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1152,50 +754,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa84af6f-5b55-4c94-8fbc-4771533fbd74 + - 8ecfb799-7a1b-4a75-a8cd-0d98a2733b4d status: 200 OK code: 200 - duration: 172.419875ms - - id: 23 + duration: 171.390125ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 61 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"59bad5bb-2572-4799-9588-419baf558105"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1971 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:25 GMT + - Mon, 30 Jun 2025 15:40:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1203,11 +803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cd328b41-6de8-4155-89f2-e34cc94c3e4a - status: 201 Created - code: 201 - duration: 5.516659667s - - id: 24 + - 3d1697ab-be10-449a-90c4-b3c5c1a8ece4 + status: 200 OK + code: 200 + duration: 289.753791ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -1223,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -1231,20 +831,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 143 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' headers: Content-Length: - - "473" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:25 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,11 +852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 08f45186-098e-4736-a28c-4e50ca211978 - status: 200 OK - code: 200 - duration: 114.271125ms - - id: 25 + - 23d4016d-852a-44b5-a27c-00a0f3665a73 + status: 404 Not Found + code: 404 + duration: 74.141333ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -1272,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -1280,20 +880,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 686 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' headers: Content-Length: - - "473" + - "686" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:30 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,11 +901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6efaab30-a3d4-49bd-8cd2-f4388bc3bb5b + - 5bbadce3-c98b-4ed7-a424-4438ab4e0ebf status: 200 OK code: 200 - duration: 117.817917ms - - id: 26 + duration: 54.066625ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -1321,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/user_data method: GET response: proto: HTTP/2.0 @@ -1329,20 +929,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 17 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"user_data":[]}' headers: Content-Length: - - "473" + - "17" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:36 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,11 +950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e30cbf5-b98f-4832-a957-84db22de83fb + - 16d77a47-ff57-45a2-a707-952e69831997 status: 200 OK code: 200 - duration: 118.217917ms - - id: 27 + duration: 92.192833ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1370,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics method: GET response: proto: HTTP/2.0 @@ -1378,20 +978,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 20 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nics":[]}' headers: Content-Length: - - "473" + - "20" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:41 GMT + - Mon, 30 Jun 2025 15:40:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,11 +1001,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 43d22d55-5faf-4225-9971-687c7df610cd + - 3fbee0f8-dbca-49e2-a07a-f1ec08fddf47 + X-Total-Count: + - "0" status: 200 OK code: 200 - duration: 86.728791ms - - id: 28 + duration: 104.864666ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1419,7 +1023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -1427,20 +1031,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 473 + content_length: 1971 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "473" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:46 GMT + - Mon, 30 Jun 2025 15:40:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,28 +1052,30 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c826c3b4-c979-4963-bcbb-51f69479d55e + - b1010b2c-b224-4ee3-a826-8cb036070572 status: 200 OK code: 200 - duration: 76.45225ms - - id: 29 + duration: 393.770209ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 61 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9"}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics + method: POST response: proto: HTTP/2.0 proto_major: 2 @@ -1478,7 +1084,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1487,9 +1093,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:51 GMT + - Mon, 30 Jun 2025 15:40:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,11 +1103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8648dc09-02a2-4ccc-a105-24d60749abf1 - status: 200 OK - code: 200 - duration: 73.15925ms - - id: 30 + - 91a2169a-96b8-4f69-b9b0-01d4a6cfeee3 + status: 201 Created + code: 201 + duration: 5.541093709s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1517,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1527,7 +1133,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1536,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:56 GMT + - Mon, 30 Jun 2025 15:40:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,11 +1152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5c51fc81-3b09-443e-b19b-653846dca8d2 + - 7609ccde-2e8d-4088-8029-d7460773ef54 status: 200 OK code: 200 - duration: 144.897042ms - - id: 31 + duration: 95.037916ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1566,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1576,7 +1182,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1585,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:01 GMT + - Mon, 30 Jun 2025 15:40:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,11 +1201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b543b49-125e-4a85-a12d-f84698cbcbcf + - c92d4365-80c5-4eab-9c33-3fbe415f2bed status: 200 OK code: 200 - duration: 65.824792ms - - id: 32 + duration: 107.097875ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1615,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1625,7 +1231,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1634,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:06 GMT + - Mon, 30 Jun 2025 15:40:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,11 +1250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 77011050-b01a-41f2-acda-352aed7017c4 + - 11492acb-0f6a-4b74-a9b2-e77cc1d6694a status: 200 OK code: 200 - duration: 62.510875ms - - id: 33 + duration: 86.248208ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1664,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1674,7 +1280,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1683,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:11 GMT + - Mon, 30 Jun 2025 15:40:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,11 +1299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0fef04c-cccc-48ad-b28f-b82ef354a9a7 + - 122a7821-2441-4317-b03d-60b5e2743e81 status: 200 OK code: 200 - duration: 65.3165ms - - id: 34 + duration: 82.257834ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1713,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1723,7 +1329,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:02:20.370222+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:03.012161+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1732,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:16 GMT + - Mon, 30 Jun 2025 15:40:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1742,11 +1348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a0ba84fe-9e43-49a0-89b5-07a2ddc54518 + - baf30b9c-2c09-445d-9ec9-7a3731a28bde status: 200 OK code: 200 - duration: 61.874875ms - - id: 35 + duration: 61.879708ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1762,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1772,7 +1378,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1781,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:21 GMT + - Mon, 30 Jun 2025 15:40:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1791,11 +1397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ef8cdce7-8a2d-4862-aeb2-b3c416ac0e44 + - b4ac4fad-71df-4265-8711-44ec984f9e7c status: 200 OK code: 200 - duration: 74.315208ms - - id: 36 + duration: 61.36075ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1811,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -1821,7 +1427,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1830,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:21 GMT + - Mon, 30 Jun 2025 15:40:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1840,11 +1446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4d8290bd-8f75-4212-bd67-0da0d7b8e1b7 + - d4914954-ceb9-4b85-843e-3b2a20c56c51 status: 200 OK code: 200 - duration: 71.602459ms - - id: 37 + duration: 69.025792ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1860,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -1868,20 +1474,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2429 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "2429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1889,11 +1495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 153646e1-669e-4d04-85b9-57e3c3cbcc68 + - 2926fc89-a256-4372-85c4-e4d3be51b2dd status: 200 OK code: 200 - duration: 196.913292ms - - id: 38 + duration: 222.041792ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1909,7 +1515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=59bad5bb-2572-4799-9588-419baf558105&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=4d11f49e-c441-4a06-91af-8929e36f39b9&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1919,7 +1525,7 @@ interactions: trailer: {} content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' headers: Content-Length: - "1072" @@ -1928,9 +1534,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1938,11 +1544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26fd9532-2f6f-4c27-8dbf-29f20cefa0b4 + - 48e8e2c9-253f-4a90-ae69-0d0ec652a5bd status: 200 OK code: 200 - duration: 57.335459ms - - id: 39 + duration: 52.85475ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1958,7 +1564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1968,7 +1574,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -1977,9 +1583,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1987,11 +1593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ccde7469-071c-43f7-b17a-66bb8dfb0212 + - 775efd6f-07d1-4d1b-8ce5-7db3431555d0 status: 200 OK code: 200 - duration: 60.043708ms - - id: 40 + duration: 55.226125ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -2007,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2017,7 +1623,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2026,9 +1632,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2036,11 +1642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 80aa6c46-4920-494f-9f2b-f1e72c1a2845 + - b4bb8b74-6959-45e1-b496-d9e65c71c83e status: 200 OK code: 200 - duration: 67.687583ms - - id: 41 + duration: 62.88175ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -2056,7 +1662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2066,7 +1672,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2075,9 +1681,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2085,11 +1691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2c0d3733-dee9-4345-a3ef-1eb96ca36c6e + - 20e1a80b-69db-4272-a1df-3232622330fe status: 200 OK code: 200 - duration: 49.37ms - - id: 42 + duration: 45.401667ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -2105,7 +1711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2115,7 +1721,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2124,9 +1730,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2134,11 +1740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 850640f5-09af-42e7-b583-faeb6b0707b3 + - c252a441-d201-4f18-9db0-ab635da951b0 status: 200 OK code: 200 - duration: 52.3965ms - - id: 43 + duration: 46.5125ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -2154,7 +1760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 method: GET response: proto: HTTP/2.0 @@ -2164,7 +1770,7 @@ interactions: trailer: {} content_length: 423 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.637791Z","custom_routes_propagation_enabled":true,"id":"b552a3ca-df6f-4585-a44d-12bc07e893cc","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:02:09.676294Z"}' + body: '{"created_at":"2025-06-30T15:39:54.830839Z","custom_routes_propagation_enabled":true,"id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5","is_default":false,"name":"tf-tests-ipam-ip-datasource-instance","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-06-30T15:39:54.884867Z"}' headers: Content-Length: - "423" @@ -2173,9 +1779,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2183,11 +1789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 932e28f1-a4f1-44a4-9835-090233e07925 + - 9ffb9e82-0037-4620-bfb1-357cf0544482 status: 200 OK code: 200 - duration: 30.063792ms - - id: 44 + duration: 61.136792ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -2203,7 +1809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 method: GET response: proto: HTTP/2.0 @@ -2213,7 +1819,7 @@ interactions: trailer: {} content_length: 1082 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.906954Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"59bad5bb-2572-4799-9588-419baf558105","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.906954Z","id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"},{"created_at":"2025-06-30T15:02:09.906954Z","id":"908b1a40-6f82-401b-902c-fd3c4f7f4509","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a967::/64","updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}],"tags":[],"updated_at":"2025-06-30T15:02:09.906954Z","vpc_id":"b552a3ca-df6f-4585-a44d-12bc07e893cc"}' + body: '{"created_at":"2025-06-30T15:39:55.085745Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"4d11f49e-c441-4a06-91af-8929e36f39b9","name":"tf-tests-ipam-ip-datasource-instance","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:55.085745Z","id":"7618a371-87ee-420c-95cf-5c7f1cb6674f","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"},{"created_at":"2025-06-30T15:39:55.085745Z","id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:236f::/64","updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}],"tags":[],"updated_at":"2025-06-30T15:39:55.085745Z","vpc_id":"246535c0-e94a-42e5-a8e6-81af0ff30ad5"}' headers: Content-Length: - "1082" @@ -2222,9 +1828,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2232,11 +1838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01cdb23f-06a7-47bb-9f92-ac7fc0bed515 + - b94cdea5-0358-4a1d-be43-45037e3fbe9c status: 200 OK code: 200 - duration: 41.434042ms - - id: 45 + duration: 29.371167ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -2252,7 +1858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -2260,20 +1866,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2429 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "2429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2281,11 +1887,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0e252e0f-db03-4b88-a4da-5b1709a16ae6 + - 67ab3181-dab8-4436-b0d5-9038b97d4346 status: 200 OK code: 200 - duration: 136.894667ms - - id: 46 + duration: 172.561083ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -2301,7 +1907,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -2311,7 +1917,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' headers: Content-Length: - "143" @@ -2320,9 +1926,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2330,11 +1936,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a7c2a7de-3d8e-4853-9a3d-5b1a11a020ad + - 647725d5-aad7-463a-92d0-bcb8695aac06 status: 404 Not Found code: 404 - duration: 29.915708ms - - id: 47 + duration: 34.643375ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2350,7 +1956,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -2360,7 +1966,7 @@ interactions: trailer: {} content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' headers: Content-Length: - "686" @@ -2369,9 +1975,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2379,11 +1985,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8d6c253-80f8-4e30-b65f-75d67822fd67 + - f6d00202-6445-42b4-b3ab-3ee4c40cb81e status: 200 OK code: 200 - duration: 48.241083ms - - id: 48 + duration: 53.03575ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2399,7 +2005,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/user_data method: GET response: proto: HTTP/2.0 @@ -2418,9 +2024,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2428,11 +2034,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1698303a-bf1b-4bfd-905a-d3834a00f2bb + - 593bbbc6-6c94-4b62-8a13-11ae95685bfd status: 200 OK code: 200 - duration: 87.680625ms - - id: 49 + duration: 78.502042ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2448,7 +2054,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics method: GET response: proto: HTTP/2.0 @@ -2458,7 +2064,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2467,11 +2073,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:34 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2479,13 +2085,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1f132e2-fcbf-460d-aa85-9ba55ae382a8 + - c2413df9-3a06-470f-b188-a5c33b509f84 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 53.354583ms - - id: 50 + duration: 509.378834ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2501,7 +2107,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2511,7 +2117,7 @@ interactions: trailer: {} content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' headers: Content-Length: - "1072" @@ -2520,9 +2126,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:22 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2530,11 +2136,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1ea38c7-5026-49e5-9f3f-e3eeea072fcd + - eeadbcc9-52ab-4b53-a884-d91162b1c6b7 status: 200 OK code: 200 - duration: 32.255417ms - - id: 51 + duration: 29.433917ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2550,7 +2156,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -2560,7 +2166,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2569,9 +2175,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2579,11 +2185,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bf75116e-c97c-4bd4-a5f0-dbe0dd0c1001 + - d7cac7da-d4b2-4351-af29-d71ba32a8c3c status: 200 OK code: 200 - duration: 121.507666ms - - id: 52 + duration: 68.161625ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2599,7 +2205,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -2607,20 +2213,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 2428 + content_length: 2429 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "2428" + - "2429" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2628,11 +2234,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5d9e114-906d-4624-988b-898b6933ef23 + - 6a4aad71-1b8f-4400-a291-c881cf1b5c3b status: 200 OK code: 200 - duration: 127.411291ms - - id: 53 + duration: 149.448375ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2648,7 +2254,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=59bad5bb-2572-4799-9588-419baf558105&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=4d11f49e-c441-4a06-91af-8929e36f39b9&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2658,7 +2264,7 @@ interactions: trailer: {} content_length: 1072 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a967:f0c5:7ef0:497d:9a6b/64","created_at":"2025-06-30T15:02:24.711114Z","id":"09d67b03-66e8-4a14-a151-4f3584ba6399","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"908b1a40-6f82-401b-902c-fd3c4f7f4509"},"tags":[],"updated_at":"2025-06-30T15:02:24.711114Z","zone":null},{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:236f:254e:3e62:20d3:efeb/64","created_at":"2025-06-30T15:40:07.092487Z","id":"9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"c6a310de-bfc2-4676-aa6c-8c1a4ba920d6"},"tags":[],"updated_at":"2025-06-30T15:40:07.092487Z","zone":null},{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":2}' headers: Content-Length: - "1072" @@ -2667,9 +2273,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2677,11 +2283,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9214dcf4-c7be-42c1-8510-f0f3af2535d5 + - 72448df3-1096-4c3f-a7c9-082bb9c18965 status: 200 OK code: 200 - duration: 46.010916ms - - id: 54 + duration: 50.018958ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2697,7 +2303,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2707,7 +2313,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2716,9 +2322,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2726,11 +2332,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f5d66008-698e-470d-8a67-35d3b14ce419 + - 13a985ab-a114-433c-9069-1ff7cea85efa status: 200 OK code: 200 - duration: 54.2745ms - - id: 55 + duration: 56.299709ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2746,7 +2352,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2756,7 +2362,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2765,9 +2371,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2775,11 +2381,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c156fe6a-4cb9-495f-9686-1675946be875 + - 7e5c8123-c37d-4220-a0ed-e48a6327264e status: 200 OK code: 200 - duration: 56.110125ms - - id: 56 + duration: 57.441583ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2795,7 +2401,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A3a%3Ad8&order_by=created_at_desc&page=1&resource_type=unknown_type + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&mac_address=02%3A00%3A00%3A17%3A82%3A13&order_by=created_at_desc&page=1&resource_type=unknown_type method: GET response: proto: HTTP/2.0 @@ -2805,7 +2411,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2814,9 +2420,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2824,11 +2430,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - abfc203a-fd6f-4d5d-947c-ec39edf7ca9e + - 704c5874-fcb4-49c6-b641-2c525f437966 status: 200 OK code: 200 - duration: 61.781708ms - - id: 57 + duration: 46.753792ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2844,7 +2450,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) 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_id=ac1d3d88-6384-450f-a0f3-ec1258ace919&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?is_ipv6=false&order_by=created_at_desc&page=1&resource_id=320effc1-8980-4902-afff-75f006e6ad76&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2854,7 +2460,7 @@ interactions: trailer: {} content_length: 535 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:02:22.205503Z","id":"125f92ea-781e-4414-95c1-827301699eed","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","mac_address":"02:00:00:17:3A:D8","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"54ed8beb-5e90-4b2e-8d1f-5135a7485967"},"tags":[],"updated_at":"2025-06-30T15:02:22.205503Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.88.2/22","created_at":"2025-06-30T15:40:04.625625Z","id":"2de2402c-9e60-46cf-9483-01163d1a9638","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"320effc1-8980-4902-afff-75f006e6ad76","mac_address":"02:00:00:17:82:13","name":"tf-tests-ipam-ip-datasource-instance","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7618a371-87ee-420c-95cf-5c7f1cb6674f"},"tags":[],"updated_at":"2025-06-30T15:40:04.625625Z","zone":null}],"total_count":1}' headers: Content-Length: - "535" @@ -2863,9 +2469,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2873,11 +2479,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c38200ee-de87-4c5b-824c-6a42f10398bb + - b81d5352-6d3f-475e-b1ef-8f80aadec449 status: 200 OK code: 200 - duration: 64.25475ms - - id: 58 + duration: 72.706958ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2893,7 +2499,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -2903,7 +2509,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:02:20.212883+00:00","id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","ipam_ip_ids":["125f92ea-781e-4414-95c1-827301699eed","09d67b03-66e8-4a14-a151-4f3584ba6399"],"mac_address":"02:00:00:17:3a:d8","modification_date":"2025-06-30T15:03:20.140730+00:00","private_network_id":"59bad5bb-2572-4799-9588-419baf558105","server_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:40:02.756096+00:00","id":"320effc1-8980-4902-afff-75f006e6ad76","ipam_ip_ids":["2de2402c-9e60-46cf-9483-01163d1a9638","9971c6dc-4fd5-43d9-8e4c-eb7b55df9ae6"],"mac_address":"02:00:00:17:82:13","modification_date":"2025-06-30T15:40:28.766173+00:00","private_network_id":"4d11f49e-c441-4a06-91af-8929e36f39b9","server_id":"63b807af-58c6-4499-a6c3-664762f3df13","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2912,9 +2518,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:23 GMT + - Mon, 30 Jun 2025 15:40:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2922,11 +2528,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b64354db-9a22-460e-834e-b6b5d236ccc9 + - 38b2fc41-aec4-412d-8289-3fdbfe578a2d status: 200 OK code: 200 - duration: 70.097541ms - - id: 59 + duration: 64.6545ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2942,7 +2548,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: DELETE response: proto: HTTP/2.0 @@ -2959,9 +2565,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2969,11 +2575,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eabd5cec-c236-4edf-b5b4-cc129579fb5c + - ebee4655-fdf9-4e32-a0b6-f1eae6a7a8ff status: 204 No Content code: 204 - duration: 380.339292ms - - id: 60 + duration: 495.227333ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2989,7 +2595,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/private_nics/ac1d3d88-6384-450f-a0f3-ec1258ace919 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/private_nics/320effc1-8980-4902-afff-75f006e6ad76 method: GET response: proto: HTTP/2.0 @@ -2999,7 +2605,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"ac1d3d88-6384-450f-a0f3-ec1258ace919","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"320effc1-8980-4902-afff-75f006e6ad76","type":"not_found"}' headers: Content-Length: - "148" @@ -3008,9 +2614,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3018,11 +2624,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 73288f9d-4ffd-41dd-a5f5-5c34ef4fc2c2 + - 523409aa-0e7f-4b91-9f69-968b9ee0f672 status: 404 Not Found code: 404 - duration: 80.942958ms - - id: 61 + duration: 150.516625ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -3038,7 +2644,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3046,20 +2652,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1970 + content_length: 1971 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:02:17.285153+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:39:58.910511+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1970" + - "1971" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3067,11 +2673,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e1b16f34-c591-4dfc-af72-3860f1210c0b + - a3f4654d-1b70-40f7-bce1-fe67a5ee03a6 status: 200 OK code: 200 - duration: 167.514708ms - - id: 62 + duration: 146.360917ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -3087,7 +2693,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -3097,7 +2703,7 @@ interactions: trailer: {} content_length: 686 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:02:08.167340Z","id":"e674600f-0578-42e6-a698-7b671e6184c5","product_resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:02:08.167340Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":null,"name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:39:55.293586Z","id":"7a6faa6d-11f9-42a7-b714-129760dc560f","product_resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:39:55.293586Z","zone":"fr-par-1"}' headers: Content-Length: - "686" @@ -3106,9 +2712,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3116,11 +2722,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28fb32da-25f2-4f48-852c-51c52bdbdeee + - 920db40c-73a7-4c0f-b10f-f35ab4cdf843 status: 200 OK code: 200 - duration: 37.473292ms - - id: 63 + duration: 40.155791ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -3138,7 +2744,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13/action method: POST response: proto: HTTP/2.0 @@ -3148,7 +2754,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9/action","href_result":"/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","id":"66edf16b-c51f-49da-ae38-c364430e22e0","progress":0,"started_at":"2025-06-30T15:03:24.734144+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/63b807af-58c6-4499-a6c3-664762f3df13/action","href_result":"/servers/63b807af-58c6-4499-a6c3-664762f3df13","id":"2a3bb6f4-8ae9-488f-8014-f670114f80ad","progress":0,"started_at":"2025-06-30T15:40:37.059720+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -3157,11 +2763,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:37 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/66edf16b-c51f-49da-ae38-c364430e22e0 + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/2a3bb6f4-8ae9-488f-8014-f670114f80ad Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3169,11 +2775,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8103713-0e82-4d59-b755-e9e72b931f65 + - 4b6a7729-488f-43a5-85e4-b714c9b88b22 status: 202 Accepted code: 202 - duration: 431.82825ms - - id: 64 + duration: 263.29575ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -3189,7 +2795,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3197,20 +2803,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1930" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:24 GMT + - Mon, 30 Jun 2025 15:40:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3218,11 +2824,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06c4026c-7d04-4933-90ac-87e6e170da83 + - cba0d286-d9a2-4e44-a216-7d73858d6b81 status: 200 OK code: 200 - duration: 162.874792ms - - id: 65 + duration: 151.295458ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -3238,7 +2844,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/59bad5bb-2572-4799-9588-419baf558105 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/4d11f49e-c441-4a06-91af-8929e36f39b9 method: DELETE response: proto: HTTP/2.0 @@ -3255,9 +2861,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:29 GMT + - Mon, 30 Jun 2025 15:40:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3265,11 +2871,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a93797d2-7fd1-4028-8481-b41a684e30d0 + - 1b2f203c-203a-4642-988a-07d5dc0c2134 status: 204 No Content code: 204 - duration: 5.422629625s - - id: 66 + duration: 2.294986667s + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -3285,7 +2891,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b552a3ca-df6f-4585-a44d-12bc07e893cc + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/246535c0-e94a-42e5-a8e6-81af0ff30ad5 method: DELETE response: proto: HTTP/2.0 @@ -3302,9 +2908,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:29 GMT + - Mon, 30 Jun 2025 15:40:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3312,11 +2918,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fb3cfcd-b965-4569-b9ce-2697439d0320 + - 156c7d82-5072-4160-aceb-8ed2234ae346 status: 204 No Content code: 204 - duration: 85.294709ms - - id: 67 + duration: 103.252375ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -3332,7 +2938,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3340,20 +2946,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1930" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:30 GMT + - Mon, 30 Jun 2025 15:40:42 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3361,11 +2967,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1b8945aa-4e19-4a31-96f6-99c177784d25 + - ebabde44-a66a-4bb3-abe2-684057e1524d status: 200 OK code: 200 - duration: 176.533875ms - - id: 68 + duration: 142.786ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3381,7 +2987,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3389,20 +2995,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1930" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:35 GMT + - Mon, 30 Jun 2025 15:40:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3410,11 +3016,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a58b0f7f-bd39-4f14-bc42-3ad2dc7d419e + - f12e0fab-37e5-4871-ae15-6e25a74e401c status: 200 OK code: 200 - duration: 145.717583ms - - id: 69 + duration: 161.161ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3430,7 +3036,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3438,20 +3044,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1930 + content_length: 1931 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"201","node_id":"152","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:24.360219+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1930" + - "1931" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:40 GMT + - Mon, 30 Jun 2025 15:40:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3459,11 +3065,109 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f18f6429-1863-4e7e-9400-5b6600944be2 + - 9bf5ccfd-1a49-457a-982c-8099f65718e3 status: 200 OK code: 200 - duration: 258.298875ms - - id: 70 + duration: 263.801417ms + - id: 62 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1931 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1931" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:40:57 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - be6a378a-6865-4787-9a3c-f99153abd72b + status: 200 OK + code: 200 + duration: 144.279625ms + - id: 63 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1931 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"901","node_id":"135","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:40:36.890963+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1931" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:41:03 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge02) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - b0819501-f080-4063-9bf0-9ecc895ed8be + status: 200 OK + code: 200 + duration: 147.154042ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3479,7 +3183,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3489,7 +3193,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:40.446789+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:41:06.764388+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -3498,9 +3202,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:45 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3508,11 +3212,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 90e6d0b7-562c-4ab0-80ab-2fd2741bc056 + - 176b9861-7d7d-49d5-983f-4bda3672be4b status: 200 OK code: 200 - duration: 307.094709ms - - id: 71 + duration: 160.015917ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3528,7 +3232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3538,7 +3242,7 @@ interactions: trailer: {} content_length: 1814 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:02:07.803028+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:24:27","maintenances":[],"modification_date":"2025-06-30T15:03:40.446789+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:39:55.165458+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-tests-ipam-ip-datasource-instance","id":"63b807af-58c6-4499-a6c3-664762f3df13","image":{"arch":"x86_64","creation_date":"2025-06-25T15:22:47.802487+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"a25cf4c9-6a59-47ed-87eb-dd8656b2fca9","modification_date":"2025-06-25T15:22:47.802487+00:00","name":"Ubuntu 22.04 Jammy Jellyfish","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:09","maintenances":[],"modification_date":"2025-06-30T15:41:06.764388+00:00","name":"tf-tests-ipam-ip-datasource-instance","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":["terraform-test","data_scaleway_instance_servers","basic"],"volumes":{"0":{"boot":false,"id":"9291f220-1094-45fc-9a94-d5d1403dc783","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1814" @@ -3547,9 +3251,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:45 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3557,11 +3261,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a16e71bc-0e3f-4a08-a5fe-79d2f5740f50 + - 8f1fc629-8c63-4ae9-a313-5e27645093f1 status: 200 OK code: 200 - duration: 136.623208ms - - id: 72 + duration: 148.673417ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3577,7 +3281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: DELETE response: proto: HTTP/2.0 @@ -3594,9 +3298,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3604,11 +3308,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdb8f3f3-649f-4ba1-9538-8de44d0603a7 + - 4adf2c81-7384-42e4-afa6-83ab3a077c56 status: 204 No Content code: 204 - duration: 292.668083ms - - id: 73 + duration: 245.898209ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3624,7 +3328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3634,7 +3338,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","type":"not_found"}' headers: Content-Length: - "143" @@ -3643,9 +3347,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3653,11 +3357,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f16cf11-993a-4073-8813-ed9cd147ae24 + - b51308c4-2f6e-4660-bbe4-df353abdd747 status: 404 Not Found code: 404 - duration: 95.017666ms - - id: 74 + duration: 114.134208ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3673,7 +3377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -3683,7 +3387,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"9291f220-1094-45fc-9a94-d5d1403dc783","type":"not_found"}' headers: Content-Length: - "143" @@ -3692,9 +3396,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3702,11 +3406,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2fbf6011-4483-427f-a020-70878af51b5e + - 32833cce-e0ca-4163-a607-f53e40570017 status: 404 Not Found code: 404 - duration: 52.600875ms - - id: 75 + duration: 42.360375ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3722,7 +3426,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: GET response: proto: HTTP/2.0 @@ -3732,7 +3436,7 @@ interactions: trailer: {} content_length: 484 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:08.167340Z","id":"17319a54-356e-4114-a7f1-59d6b91b2d4f","last_detached_at":"2025-06-30T15:03:46.267976Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:03:46.267976Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:39:55.293586Z","id":"9291f220-1094-45fc-9a94-d5d1403dc783","last_detached_at":"2025-06-30T15:41:08.736570Z","name":"Ubuntu 22.04 Jammy Jellyfish_sbs_volume_0","parent_snapshot_id":"8ce605f7-c1f9-4f32-a8c1-976d0a977ad2","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:41:08.736570Z","zone":"fr-par-1"}' headers: Content-Length: - "484" @@ -3741,9 +3445,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3751,11 +3455,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8695b73-e755-42ce-bbbd-83976619a158 + - 6dad4e8c-1d88-48e1-990d-28f985aaadca status: 200 OK code: 200 - duration: 47.723875ms - - id: 76 + duration: 47.327709ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3771,7 +3475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/17319a54-356e-4114-a7f1-59d6b91b2d4f + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/9291f220-1094-45fc-9a94-d5d1403dc783 method: DELETE response: proto: HTTP/2.0 @@ -3788,9 +3492,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3798,11 +3502,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f1e2417-7c18-48a9-b67c-2cc81eb01b66 + - 87bd35dd-ad5e-4ae6-898c-4f3ea5a13456 status: 204 No Content code: 204 - duration: 81.40675ms - - id: 77 + duration: 77.972542ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3818,7 +3522,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/2a487bc4-a602-44f1-93f1-c8b5fcf47cf9 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/63b807af-58c6-4499-a6c3-664762f3df13 method: GET response: proto: HTTP/2.0 @@ -3828,7 +3532,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"2a487bc4-a602-44f1-93f1-c8b5fcf47cf9","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"63b807af-58c6-4499-a6c3-664762f3df13","type":"not_found"}' headers: Content-Length: - "143" @@ -3837,9 +3541,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:03:46 GMT + - Mon, 30 Jun 2025 15:41:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3847,7 +3551,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6653f98-4ef5-44de-8ab6-979072b6ead5 + - 55d7aa67-b10e-453b-a82b-0b9241641286 status: 404 Not Found code: 404 - duration: 88.583042ms + duration: 102.391375ms diff --git a/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml b/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml index a405bcb6ff..3359107cf8 100644 --- a/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml +++ b/internal/services/ipam/testdata/data-source-ipamipid.cassette.yaml @@ -2,57 +2,6 @@ version: 2 interactions: - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 102 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - 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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 28 - uncompressed: false - body: '{"message":"internal error"}' - headers: - Content-Length: - - "28" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:07 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - fb3e70ce-aaea-435f-83a1-acb0a2f34076 - status: 500 Internal Server Error - code: 500 - duration: 159.238834ms - - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -80,7 +29,7 @@ interactions: trailer: {} content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":false,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.617828Z"}' + body: '{"created_at":"2025-06-30T15:39:05.133884Z","custom_routes_propagation_enabled":false,"id":"2e33c4f6-d918-4339-b898-83ace43210b4","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-06-30T15:39:05.133884Z"}' headers: Content-Length: - "394" @@ -89,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:39:05 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -99,11 +48,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 990ce443-c5d8-45b6-ace8-2214d3f01faa + - d8e119a8-4ea7-4ecb-b9e2-878207c780ea status: 200 OK code: 200 - duration: 89.30825ms - - id: 2 + duration: 350.152542ms + - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -121,7 +70,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6/enable-custom-routes-propagation + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2e33c4f6-d918-4339-b898-83ace43210b4/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -131,7 +80,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' + body: '{"created_at":"2025-06-30T15:39:05.133884Z","custom_routes_propagation_enabled":true,"id":"2e33c4f6-d918-4339-b898-83ace43210b4","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-06-30T15:39:05.218399Z"}' headers: Content-Length: - "393" @@ -140,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:39:05 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -150,11 +99,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16781919-7b25-4618-8fd4-0e2fba28d816 + - 99466926-0312-46dd-8889-faa884fc9f90 status: 200 OK code: 200 - duration: 37.841667ms - - id: 3 + duration: 76.729667ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -170,7 +119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2e33c4f6-d918-4339-b898-83ace43210b4 method: GET response: proto: HTTP/2.0 @@ -180,7 +129,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' + body: '{"created_at":"2025-06-30T15:39:05.133884Z","custom_routes_propagation_enabled":true,"id":"2e33c4f6-d918-4339-b898-83ace43210b4","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-06-30T15:39:05.218399Z"}' headers: Content-Length: - "393" @@ -189,7 +138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:39:05 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -199,22 +148,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 59831f66-6242-4ebc-946d-7ff8b87395d0 + - 8bc832ca-5d35-4912-8d5d-c2e9cb4bd3c6 status: 200 OK code: 200 - duration: 27.277833ms - - id: 4 + duration: 92.665875ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 213 + content_length: 215 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-hardcore-cannon","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-priceless-davinci","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -229,18 +178,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' + body: '{"created_at":"2025-06-30T15:39:05.390405Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d45daa31-335d-455d-b62a-9f4a138b489e","name":"tf-pn-priceless-davinci","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:05.390405Z","id":"bfeec783-bb5a-443e-9048-011666119386","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"},{"created_at":"2025-06-30T15:39:05.390405Z","id":"6bf4414d-40c4-4b6c-af37-f37bd424b656","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a8b7::/64","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}],"tags":[],"updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}' headers: Content-Length: - - "1067" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:39:05 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -250,11 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cf08492-2d1d-4587-b564-edea87b31622 + - 206e1d80-cf87-4b95-850e-88f2428fc27a status: 200 OK code: 200 - duration: 570.136458ms - - id: 5 + duration: 546.101958ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -270,7 +219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d45daa31-335d-455d-b62a-9f4a138b489e method: GET response: proto: HTTP/2.0 @@ -278,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' + body: '{"created_at":"2025-06-30T15:39:05.390405Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d45daa31-335d-455d-b62a-9f4a138b489e","name":"tf-pn-priceless-davinci","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:05.390405Z","id":"bfeec783-bb5a-443e-9048-011666119386","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"},{"created_at":"2025-06-30T15:39:05.390405Z","id":"6bf4414d-40c4-4b6c-af37-f37bd424b656","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a8b7::/64","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}],"tags":[],"updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}' headers: Content-Length: - - "1067" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:10 GMT + - Mon, 30 Jun 2025 15:39:05 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -299,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eaab4bfa-dc63-4b3c-9e4f-e542220c422a + - 013ac415-0def-4d7a-8112-50de20fe93df status: 200 OK code: 200 - duration: 27.096ms - - id: 6 + duration: 51.971333ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -314,7 +263,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea"},"is_ipv6":false,"address":"172.16.32.5","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e"},"is_ipv6":false,"address":"172.16.32.5","tags":[]}' form: {} headers: Content-Type: @@ -331,7 +280,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -340,7 +289,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -350,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2cba871-f9e2-4193-958e-0409dc224364 + - 14ed260e-98f8-4475-904a-2a7d90498544 status: 200 OK code: 200 - duration: 827.093375ms - - id: 7 + duration: 851.975708ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -370,7 +319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -380,7 +329,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -389,7 +338,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -399,11 +348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a33615bf-5d81-4ba9-935f-fc4ed88a949e + - b1486e8a-4f68-4316-8485-bc1e967cf775 status: 200 OK code: 200 - duration: 63.653666ms - - id: 8 + duration: 50.386458ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -419,7 +368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d45daa31-335d-455d-b62a-9f4a138b489e method: GET response: proto: HTTP/2.0 @@ -427,18 +376,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' + body: '{"created_at":"2025-06-30T15:39:05.390405Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d45daa31-335d-455d-b62a-9f4a138b489e","name":"tf-pn-priceless-davinci","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:05.390405Z","id":"bfeec783-bb5a-443e-9048-011666119386","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"},{"created_at":"2025-06-30T15:39:05.390405Z","id":"6bf4414d-40c4-4b6c-af37-f37bd424b656","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a8b7::/64","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}],"tags":[],"updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}' headers: Content-Length: - - "1067" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -448,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c302d7a-11d8-4263-a8b7-4122351aa887 + - 434cdf5b-2996-4b37-a9fd-9325f844e11f status: 200 OK code: 200 - duration: 26.083084ms - - id: 9 + duration: 28.438ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -468,7 +417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -478,7 +427,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -487,7 +436,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -497,11 +446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67484400-c3e2-466a-9702-dd87075cc553 + - f530f686-8f4f-40c4-9e74-017e00a8bc46 status: 200 OK code: 200 - duration: 54.995292ms - - id: 10 + duration: 50.595417ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -517,7 +466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -527,7 +476,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -536,7 +485,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -546,11 +495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e62b4eff-dff9-40f8-aedf-bc0b4d5b1003 + - f87b9aaa-9e58-4152-8671-e11235959ab0 status: 200 OK code: 200 - duration: 26.935583ms - - id: 11 + duration: 45.582791ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -566,7 +515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2e33c4f6-d918-4339-b898-83ace43210b4 method: GET response: proto: HTTP/2.0 @@ -576,7 +525,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.617828Z","custom_routes_propagation_enabled":true,"id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6","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-06-30T15:02:09.662884Z"}' + body: '{"created_at":"2025-06-30T15:39:05.133884Z","custom_routes_propagation_enabled":true,"id":"2e33c4f6-d918-4339-b898-83ace43210b4","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-06-30T15:39:05.218399Z"}' headers: Content-Length: - "393" @@ -585,7 +534,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -595,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c49df3a0-f43e-47ff-bfbc-9522602a3e27 + - 62ba6f0e-b574-47d2-972b-99ef97b423dd status: 200 OK code: 200 - duration: 31.590334ms - - id: 12 + duration: 29.577166ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -615,7 +564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d45daa31-335d-455d-b62a-9f4a138b489e method: GET response: proto: HTTP/2.0 @@ -623,18 +572,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' + body: '{"created_at":"2025-06-30T15:39:05.390405Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d45daa31-335d-455d-b62a-9f4a138b489e","name":"tf-pn-priceless-davinci","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:05.390405Z","id":"bfeec783-bb5a-443e-9048-011666119386","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"},{"created_at":"2025-06-30T15:39:05.390405Z","id":"6bf4414d-40c4-4b6c-af37-f37bd424b656","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a8b7::/64","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}],"tags":[],"updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}' headers: Content-Length: - - "1067" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -644,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e3f5211-1543-4f63-b4f5-43bd28e2a1c5 + - 7eec18eb-318d-44c7-8fcd-59ec091c72ab status: 200 OK code: 200 - duration: 27.518667ms - - id: 13 + duration: 35.566917ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -664,7 +613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -674,7 +623,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -683,7 +632,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -693,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0fed4ba6-fb24-4eaf-8659-cb57e9988ebf + - dbf8464b-4cfb-43e0-abcd-fbd0020b3864 status: 200 OK code: 200 - duration: 32.820333ms - - id: 14 + duration: 50.977583ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -713,7 +662,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d45daa31-335d-455d-b62a-9f4a138b489e method: GET response: proto: HTTP/2.0 @@ -721,18 +670,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1067 + content_length: 1069 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:09.778093Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","name":"tf-pn-hardcore-cannon","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:09.778093Z","id":"433467f7-73c4-4266-a0e1-131dd8c62a9c","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"},{"created_at":"2025-06-30T15:02:09.778093Z","id":"116e1d0f-c962-44bf-b869-c891bbe95a69","private_network_id":"0e3e39ab-6146-475b-b929-4968fe46d9ea","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a129::/64","updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}],"tags":[],"updated_at":"2025-06-30T15:02:09.778093Z","vpc_id":"f3d70086-e69e-4966-b6b9-a0fdc987d6a6"}' + body: '{"created_at":"2025-06-30T15:39:05.390405Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"d45daa31-335d-455d-b62a-9f4a138b489e","name":"tf-pn-priceless-davinci","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:39:05.390405Z","id":"bfeec783-bb5a-443e-9048-011666119386","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"},{"created_at":"2025-06-30T15:39:05.390405Z","id":"6bf4414d-40c4-4b6c-af37-f37bd424b656","private_network_id":"d45daa31-335d-455d-b62a-9f4a138b489e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a8b7::/64","updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}],"tags":[],"updated_at":"2025-06-30T15:39:05.390405Z","vpc_id":"2e33c4f6-d918-4339-b898-83ace43210b4"}' headers: Content-Length: - - "1067" + - "1069" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -742,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67a6ee73-3163-45ce-8c0f-0ccce3449f54 + - 0c28977d-97ee-4648-8c94-4992cb2496c0 status: 200 OK code: 200 - duration: 30.636833ms - - id: 15 + duration: 27.609292ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -762,7 +711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -772,7 +721,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -781,7 +730,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -791,11 +740,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8caa41a-790b-42c7-9e13-d44a56cf476e + - d31d141a-f75e-436d-83b3-78ac3c6b699a status: 200 OK code: 200 - duration: 30.98525ms - - id: 16 + duration: 27.973375ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -811,7 +760,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -821,7 +770,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:02:11.091224Z","id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"433467f7-73c4-4266-a0e1-131dd8c62a9c"},"tags":[],"updated_at":"2025-06-30T15:02:11.091224Z","zone":null}' + body: '{"address":"172.16.32.5/22","created_at":"2025-06-30T15:39:06.709608Z","id":"45e30276-5628-4031-86cb-a2f267279046","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"bfeec783-bb5a-443e-9048-011666119386"},"tags":[],"updated_at":"2025-06-30T15:39:06.709608Z","zone":null}' headers: Content-Length: - "358" @@ -830,7 +779,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:11 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -840,11 +789,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93da5f5b-179c-4ea0-8084-a0ff44da017f + - b351eebb-c929-4cab-8ef0-8f3a7d65e5f2 status: 200 OK code: 200 - duration: 33.251208ms - - id: 17 + duration: 26.149958ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -862,7 +811,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: DELETE response: proto: HTTP/2.0 @@ -879,7 +828,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:12 GMT + - Mon, 30 Jun 2025 15:39:07 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -889,11 +838,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ca04a133-5f0f-4bc4-b0f4-56aeab21f6b2 + - d664bfd1-31aa-418b-8c5f-0631d446407a status: 204 No Content code: 204 - duration: 40.613125ms - - id: 18 + duration: 70.146625ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -909,7 +858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/0e3e39ab-6146-475b-b929-4968fe46d9ea + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/d45daa31-335d-455d-b62a-9f4a138b489e method: DELETE response: proto: HTTP/2.0 @@ -926,7 +875,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:39:09 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -936,11 +885,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3ef2877a-c2f4-4dbe-83e7-5f0d68c2bad3 + - 550f66cd-766f-4c5a-a174-7e296e62291f status: 204 No Content code: 204 - duration: 6.260028459s - - id: 19 + duration: 2.100659709s + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -956,7 +905,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/f3d70086-e69e-4966-b6b9-a0fdc987d6a6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2e33c4f6-d918-4339-b898-83ace43210b4 method: DELETE response: proto: HTTP/2.0 @@ -973,7 +922,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:39:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -983,11 +932,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 643cc9cf-5014-4697-bc01-9da56917d79b + - 82c545d7-e05e-4bc0-9c7f-408522975eef status: 204 No Content code: 204 - duration: 81.763375ms - - id: 20 + duration: 123.222625ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1003,7 +952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -1013,7 +962,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"45e30276-5628-4031-86cb-a2f267279046","type":"not_found"}' headers: Content-Length: - "123" @@ -1022,7 +971,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:39:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -1032,11 +981,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9548355f-7d48-42d0-8bab-1c584d2afbcf + - 7958afed-56b5-475c-a637-a986f70cda04 status: 404 Not Found code: 404 - duration: 25.526583ms - - id: 21 + duration: 31.057417ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1052,7 +1001,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/b85ce57a-a690-4440-a2c9-92914ac83f5d + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/45e30276-5628-4031-86cb-a2f267279046 method: GET response: proto: HTTP/2.0 @@ -1062,7 +1011,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"b85ce57a-a690-4440-a2c9-92914ac83f5d","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"45e30276-5628-4031-86cb-a2f267279046","type":"not_found"}' headers: Content-Length: - "123" @@ -1071,7 +1020,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:39:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -1081,7 +1030,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cbe7c0d4-4121-4221-be02-903250639257 + - 3893c23d-bd2b-4d22-a473-32e9c4ff1e95 status: 404 Not Found code: 404 - duration: 36.442583ms + duration: 30.130666ms diff --git a/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml b/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml index f302426807..dc1b7d7582 100644 --- a/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml +++ b/internal/services/ipam/testdata/ipamip-with-standalone-address.cassette.yaml @@ -29,7 +29,7 @@ interactions: trailer: {} content_length: 394 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":false,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.451348Z"}' + body: '{"created_at":"2025-06-30T15:47:38.180899Z","custom_routes_propagation_enabled":false,"id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a","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-06-30T15:47:38.180899Z"}' headers: Content-Length: - "394" @@ -38,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:47:38 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -48,10 +48,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 817c6318-842e-4590-bb2d-ddd56a93abb5 + - d0727b96-64a1-402e-abb7-733e9af726a8 status: 200 OK code: 200 - duration: 67.193542ms + duration: 492.803042ms - id: 1 request: proto: HTTP/1.1 @@ -70,7 +70,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be/enable-custom-routes-propagation + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4e2a84d7-25c7-47f7-88cd-eaf53ebed57a/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -80,7 +80,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' + body: '{"created_at":"2025-06-30T15:47:38.180899Z","custom_routes_propagation_enabled":true,"id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a","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-06-30T15:47:38.238694Z"}' headers: Content-Length: - "393" @@ -89,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:47:38 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -99,10 +99,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a646f270-875e-4e5c-a51c-b3b50a34c833 + - c9995571-2c4e-43c5-8924-79903156a77c status: 200 OK code: 200 - duration: 69.300542ms + duration: 36.424417ms - id: 2 request: proto: HTTP/1.1 @@ -119,7 +119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4e2a84d7-25c7-47f7-88cd-eaf53ebed57a method: GET response: proto: HTTP/2.0 @@ -129,7 +129,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' + body: '{"created_at":"2025-06-30T15:47:38.180899Z","custom_routes_propagation_enabled":true,"id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a","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-06-30T15:47:38.238694Z"}' headers: Content-Length: - "393" @@ -138,7 +138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:07 GMT + - Mon, 30 Jun 2025 15:47:38 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -148,22 +148,22 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f3534e5-12e3-4446-a492-90104e4cbf6b + - 6ef1e833-5676-40ad-82d8-b640844900dc status: 200 OK code: 200 - duration: 71.485333ms + duration: 62.392958ms - id: 3 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 211 + content_length: 213 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-hopeful-mayer","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","default_route_propagation_enabled":false}' + body: '{"name":"tf-pn-recursing-kirch","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a","default_route_propagation_enabled":false}' form: {} headers: Content-Type: @@ -178,18 +178,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 1067 uncompressed: false - body: '{"message":"internal error"}' + body: '{"created_at":"2025-06-30T15:47:38.370558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","name":"tf-pn-recursing-kirch","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:47:38.370558Z","id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"},{"created_at":"2025-06-30T15:47:38.370558Z","id":"0b6f5629-453a-4673-8b05-8fa35682d759","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a992::/64","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}],"tags":[],"updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}' headers: Content-Length: - - "28" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:09 GMT + - Mon, 30 Jun 2025 15:47:38 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -199,62 +199,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 814c1232-6e30-437d-b2f2-cd57ba10b1d6 - status: 500 Internal Server Error - code: 500 - duration: 1.810641208s - - id: 4 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 211 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"tf-pn-hopeful-mayer","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.32.0/22"],"vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1065 - uncompressed: false - body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' - headers: - Content-Length: - - "1065" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:02:11 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 2d159c7b-5ed1-4827-a828-4fb2dc6ad344 + - 1d565fcc-0154-48d6-bed9-6a04b7993efe status: 200 OK code: 200 - duration: 566.628709ms - - id: 5 + duration: 642.792792ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -270,7 +219,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32 method: GET response: proto: HTTP/2.0 @@ -278,18 +227,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' + body: '{"created_at":"2025-06-30T15:47:38.370558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","name":"tf-pn-recursing-kirch","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:47:38.370558Z","id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"},{"created_at":"2025-06-30T15:47:38.370558Z","id":"0b6f5629-453a-4673-8b05-8fa35682d759","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a992::/64","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}],"tags":[],"updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}' headers: Content-Length: - - "1065" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:12 GMT + - Mon, 30 Jun 2025 15:47:39 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -299,11 +248,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f56aeb3c-ae89-4677-8b4c-875140d75c2c + - 97b0d1b6-8b5a-430d-b505-b18976eb2a90 status: 200 OK code: 200 - duration: 29.986666ms - - id: 6 + duration: 53.614333ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -314,7 +263,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","source":{"private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32"},"is_ipv6":false,"address":"172.16.32.7","tags":[]}' form: {} headers: Content-Type: @@ -331,7 +280,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:47:39.764541Z","id":"51d34241-1d5d-4600-beba-2991108d1e8f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b"},"tags":[],"updated_at":"2025-06-30T15:47:39.764541Z","zone":null}' headers: Content-Length: - "358" @@ -340,7 +289,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:39 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -350,11 +299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39b36abf-e187-44d1-9db7-099211894c3c + - df50ba74-2a95-439d-a03d-6944e23b060f status: 200 OK code: 200 - duration: 1.237219917s - - id: 7 + duration: 778.948333ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -370,7 +319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/51d34241-1d5d-4600-beba-2991108d1e8f method: GET response: proto: HTTP/2.0 @@ -380,7 +329,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:47:39.764541Z","id":"51d34241-1d5d-4600-beba-2991108d1e8f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b"},"tags":[],"updated_at":"2025-06-30T15:47:39.764541Z","zone":null}' headers: Content-Length: - "358" @@ -389,7 +338,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:39 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -399,11 +348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3486f1df-3f5c-451a-8e54-47b02f750673 + - 5c398799-8122-4166-afdd-41ff518ddfcc status: 200 OK code: 200 - duration: 27.5695ms - - id: 8 + duration: 25.495209ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -419,7 +368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32 method: GET response: proto: HTTP/2.0 @@ -427,18 +376,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' + body: '{"created_at":"2025-06-30T15:47:38.370558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","name":"tf-pn-recursing-kirch","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:47:38.370558Z","id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"},{"created_at":"2025-06-30T15:47:38.370558Z","id":"0b6f5629-453a-4673-8b05-8fa35682d759","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a992::/64","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}],"tags":[],"updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}' headers: Content-Length: - - "1065" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:39 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -448,11 +397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8702efef-b50a-478a-9e4f-458fa2687c17 + - 7eb0e89c-5e6e-40c9-b25c-48a12c5e98a0 status: 200 OK code: 200 - duration: 32.703ms - - id: 9 + duration: 58.308042ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -468,7 +417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/51d34241-1d5d-4600-beba-2991108d1e8f method: GET response: proto: HTTP/2.0 @@ -478,7 +427,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:47:39.764541Z","id":"51d34241-1d5d-4600-beba-2991108d1e8f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b"},"tags":[],"updated_at":"2025-06-30T15:47:39.764541Z","zone":null}' headers: Content-Length: - "358" @@ -487,7 +436,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -497,11 +446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 18210f85-1eb3-4f08-afc3-e0d14728bb7d + - b1f6ab3b-be01-4c3f-8115-b88024585d23 status: 200 OK code: 200 - duration: 34.971917ms - - id: 10 + duration: 96.967166ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -517,7 +466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4e2a84d7-25c7-47f7-88cd-eaf53ebed57a method: GET response: proto: HTTP/2.0 @@ -527,7 +476,7 @@ interactions: trailer: {} content_length: 393 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:07.451348Z","custom_routes_propagation_enabled":true,"id":"3a4ad4f0-9af8-47de-86f3-716e947f79be","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-06-30T15:02:07.526207Z"}' + body: '{"created_at":"2025-06-30T15:47:38.180899Z","custom_routes_propagation_enabled":true,"id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a","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-06-30T15:47:38.238694Z"}' headers: Content-Length: - "393" @@ -536,7 +485,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -546,11 +495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 12751680-c2f2-4b46-ac99-520be5af635e + - 3ec86570-0a8b-4033-ad58-da5e4303f9d7 status: 200 OK code: 200 - duration: 29.476084ms - - id: 11 + duration: 33.279083ms + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -566,7 +515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32 method: GET response: proto: HTTP/2.0 @@ -574,18 +523,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' + body: '{"created_at":"2025-06-30T15:47:38.370558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","name":"tf-pn-recursing-kirch","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:47:38.370558Z","id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"},{"created_at":"2025-06-30T15:47:38.370558Z","id":"0b6f5629-453a-4673-8b05-8fa35682d759","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a992::/64","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}],"tags":[],"updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}' headers: Content-Length: - - "1065" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -595,11 +544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c9ae1a21-a485-40a6-8ca6-2eda0e63b2a3 + - 0e13cda2-9465-4756-8e80-fba0cacd96f3 status: 200 OK code: 200 - duration: 30.577416ms - - id: 12 + duration: 34.48825ms + - id: 11 request: proto: HTTP/1.1 proto_major: 1 @@ -615,7 +564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/51d34241-1d5d-4600-beba-2991108d1e8f method: GET response: proto: HTTP/2.0 @@ -625,7 +574,7 @@ interactions: trailer: {} content_length: 358 uncompressed: false - body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:02:13.236170Z","id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd"},"tags":[],"updated_at":"2025-06-30T15:02:13.236170Z","zone":null}' + body: '{"address":"172.16.32.7/22","created_at":"2025-06-30T15:47:39.764541Z","id":"51d34241-1d5d-4600-beba-2991108d1e8f","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":null,"reverses":[],"source":{"subnet_id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b"},"tags":[],"updated_at":"2025-06-30T15:47:39.764541Z","zone":null}' headers: Content-Length: - "358" @@ -634,7 +583,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -644,11 +593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 958dacb9-7171-49c5-98ba-398e3d2770aa + - 2828d9e2-51b3-4a74-aee2-789702629f1e status: 200 OK code: 200 - duration: 28.17125ms - - id: 13 + duration: 31.923625ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -664,7 +613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32 method: GET response: proto: HTTP/2.0 @@ -672,18 +621,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1065 + content_length: 1067 uncompressed: false - body: '{"created_at":"2025-06-30T15:02:11.477844Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","name":"tf-pn-hopeful-mayer","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:02:11.477844Z","id":"20d32be0-7443-4f19-bc9d-4a256dfc9bdd","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"},{"created_at":"2025-06-30T15:02:11.477844Z","id":"b7087a9e-ee39-4a28-a595-a2efdd610ad8","private_network_id":"43834507-0205-4b0c-9c40-8f0faa7a56ce","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:4d22::/64","updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}],"tags":[],"updated_at":"2025-06-30T15:02:11.477844Z","vpc_id":"3a4ad4f0-9af8-47de-86f3-716e947f79be"}' + body: '{"created_at":"2025-06-30T15:47:38.370558Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","name":"tf-pn-recursing-kirch","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:47:38.370558Z","id":"79b2f6fa-1afd-42a8-a090-b53187abdd8b","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.32.0/22","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"},{"created_at":"2025-06-30T15:47:38.370558Z","id":"0b6f5629-453a-4673-8b05-8fa35682d759","private_network_id":"e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a992::/64","updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}],"tags":[],"updated_at":"2025-06-30T15:47:38.370558Z","vpc_id":"4e2a84d7-25c7-47f7-88cd-eaf53ebed57a"}' headers: Content-Length: - - "1065" + - "1067" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -693,11 +642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97b41251-f50e-4596-9410-e97e29313161 + - c9de87af-fe90-4f44-be59-abfa4bbc9371 status: 200 OK code: 200 - duration: 29.45725ms - - id: 14 + duration: 26.446792ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -715,7 +664,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/51d34241-1d5d-4600-beba-2991108d1e8f method: DELETE response: proto: HTTP/2.0 @@ -732,7 +681,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:13 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -742,11 +691,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f2373d2a-eb88-49d1-ba9a-a6c0f2fc9d20 + - 11c14948-4859-45af-b37c-0b4a4b29f489 status: 204 No Content code: 204 - duration: 41.193292ms - - id: 15 + duration: 72.791667ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -762,7 +711,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/43834507-0205-4b0c-9c40-8f0faa7a56ce + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/e2cd9e1d-8b4b-4aae-9b96-5b79b5ab6e32 method: DELETE response: proto: HTTP/2.0 @@ -779,7 +728,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:47:43 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -789,11 +738,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8feca774-0fb3-40bd-b8f4-894201ee3bf2 + - 4186c5fa-9ab3-42c4-bc22-3608be451bf5 status: 204 No Content code: 204 - duration: 4.342538167s - - id: 16 + duration: 2.961746166s + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -809,7 +758,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/3a4ad4f0-9af8-47de-86f3-716e947f79be + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4e2a84d7-25c7-47f7-88cd-eaf53ebed57a method: DELETE response: proto: HTTP/2.0 @@ -826,7 +775,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:47:43 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -836,11 +785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65e14abe-5cb3-49d6-a5db-6cd005b7f04b + - 5ad1595e-4edd-437c-af59-7988bb2673f3 status: 204 No Content code: 204 - duration: 90.28525ms - - id: 17 + duration: 152.737042ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -856,7 +805,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/2ae75ad9-e5f0-47a8-9505-27b80cf219a1 + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips/51d34241-1d5d-4600-beba-2991108d1e8f method: GET response: proto: HTTP/2.0 @@ -866,7 +815,7 @@ interactions: trailer: {} content_length: 123 uncompressed: false - body: '{"message":"resource is not found","resource":"ip","resource_id":"2ae75ad9-e5f0-47a8-9505-27b80cf219a1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"ip","resource_id":"51d34241-1d5d-4600-beba-2991108d1e8f","type":"not_found"}' headers: Content-Length: - "123" @@ -875,7 +824,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:02:18 GMT + - Mon, 30 Jun 2025 15:47:43 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -885,7 +834,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 342dc110-f35d-4843-a1dc-009dc7bce99a + - 8d36e304-96e7-4013-892a-0af62b6133e7 status: 404 Not Found code: 404 - duration: 28.432209ms + duration: 29.155417ms diff --git a/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml b/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml index 77a7fba9ea..51de4d29f7 100644 --- a/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml +++ b/internal/services/rdb/testdata/instance-private-network-update.cassette.yaml @@ -36,9 +36,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:11:36 GMT + - Mon, 30 Jun 2025 15:45:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -46,10 +46,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cac35d6d-69dc-480e-a029-50ec81f6ee23 + - fd54c460-2b1f-4011-b53f-83fc09d11b52 status: 200 OK code: 200 - duration: 516.1035ms + duration: 457.673417ms - id: 1 request: proto: HTTP/1.1 @@ -78,7 +78,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -87,9 +87,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:11:38 GMT + - Mon, 30 Jun 2025 15:45:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -97,10 +97,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d1b8487f-587c-44b9-8de5-355b62e435ee + - 0e33f478-7f53-45ba-adff-314ee5d839c8 status: 200 OK code: 200 - duration: 614.360375ms + duration: 603.385833ms - id: 2 request: proto: HTTP/1.1 @@ -117,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -127,7 +127,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -136,9 +136,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:11:38 GMT + - Mon, 30 Jun 2025 15:45:37 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -146,10 +146,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 969f2186-d854-463e-b8e6-3af2358906e8 + - 998044ca-22ab-456f-9e26-a71ec0bd9ad6 status: 200 OK code: 200 - duration: 38.814625ms + duration: 31.770167ms - id: 3 request: proto: HTTP/1.1 @@ -161,7 +161,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-rdb-private-network-update","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' + body: '{"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","name":"test-rdb-private-network-update","engine":"PostgreSQL-16","user_name":"my_initial_user","password":"thiZ_is_v\u0026ry_s3cret","node_type":"db-dev-s","is_ha_cluster":false,"disable_backup":true,"tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"init_settings":null,"volume_type":"sbs_5k","volume_size":10000000000,"init_endpoints":[{"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","ipam_config":{}}}],"backup_same_region":false,"encryption":{"enabled":false}}' form: {} headers: Content-Type: @@ -178,7 +178,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -187,9 +187,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:11:41 GMT + - Mon, 30 Jun 2025 15:45:39 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,10 +197,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03386649-66e9-4b70-9790-6776d3d9a637 + - 4c91d883-5c81-4ef0-a2d8-9690ccb5169c status: 200 OK code: 200 - duration: 2.888122584s + duration: 2.896414666s - id: 4 request: proto: HTTP/1.1 @@ -217,7 +217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -227,7 +227,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -236,9 +236,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:11:41 GMT + - Mon, 30 Jun 2025 15:45:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,10 +246,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edcc558f-e767-49f6-a1bd-a55c87065e77 + - 414e370f-933b-43fa-9cab-ee77b9fab252 status: 200 OK code: 200 - duration: 135.33775ms + duration: 129.263959ms - id: 5 request: proto: HTTP/1.1 @@ -266,7 +266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -276,7 +276,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -285,9 +285,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:12:11 GMT + - Mon, 30 Jun 2025 15:46:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,10 +295,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d6571e8-07f4-4bdb-a6d8-ec76750f4c9f + - 09e606ec-c69f-408a-b802-b397abcca5d5 status: 200 OK code: 200 - duration: 132.45275ms + duration: 129.724208ms - id: 6 request: proto: HTTP/1.1 @@ -315,7 +315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -325,7 +325,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -334,7 +334,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:12:41 GMT + - Mon, 30 Jun 2025 15:46:40 GMT Server: - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: @@ -344,10 +344,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4e6bf778-5972-4024-baaf-73ec94237fcc + - 043cb3f9-e1b3-4cfd-a68f-0c951b8d2ad7 status: 200 OK code: 200 - duration: 336.149959ms + duration: 166.36025ms - id: 7 request: proto: HTTP/1.1 @@ -364,7 +364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -374,7 +374,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"provisioning","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -383,7 +383,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:13:11 GMT + - Mon, 30 Jun 2025 15:47:10 GMT Server: - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: @@ -393,10 +393,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f341aa45-96e0-4238-8ab4-ef3ff16eeb75 + - 483ac275-0802-4f98-83df-3c6280d87763 status: 200 OK code: 200 - duration: 97.025416ms + duration: 136.614708ms - id: 8 request: proto: HTTP/1.1 @@ -413,7 +413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -423,7 +423,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -432,9 +432,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:13:42 GMT + - Mon, 30 Jun 2025 15:47:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -442,10 +442,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5f77afc1-6a11-4f14-8d24-47fcfc3fe94b + - db0d1ab6-8688-4f4d-980d-68de90e6f744 status: 200 OK code: 200 - duration: 118.438417ms + duration: 159.795292ms - id: 9 request: proto: HTTP/1.1 @@ -462,7 +462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -472,7 +472,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1055" @@ -481,9 +481,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:12 GMT + - Mon, 30 Jun 2025 15:48:10 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -491,10 +491,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ed5c90f8-0324-4a03-b7e1-a8a6461eb61f + - 86b9aa56-e23d-4a6e-86a8-b61408494501 status: 200 OK code: 200 - duration: 132.755916ms + duration: 135.294916ms - id: 10 request: proto: HTTP/1.1 @@ -511,7 +511,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1055 + uncompressed: false + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + headers: + Content-Length: + - "1055" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:48:41 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - da1479f3-aaef-4ef4-81b4-9a1673c76002 + status: 200 OK + code: 200 + duration: 144.681125ms + - id: 11 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -521,7 +570,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -530,7 +579,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:42 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: @@ -540,11 +589,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3faa4e68-f264-4d47-ae9f-eb0f82e4948b + - a7a508f5-641a-4b6f-8d6b-2e9625c42b19 status: 200 OK code: 200 - duration: 123.832833ms - - id: 11 + duration: 185.444459ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -560,7 +609,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -570,7 +619,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -579,9 +628,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:42 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,11 +638,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 808ac356-d827-4c9b-9cad-d19e3eed639c + - 5e888a7d-bdd0-47ca-908c-cbfc5cf9e990 status: 200 OK code: 200 - duration: 111.604667ms - - id: 12 + duration: 123.894208ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -609,7 +658,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=793dc253-54ba-4634-8693-511977de1571&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -619,7 +668,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:45:39.082331Z","id":"e0941ed0-ca65-4182-8bd6-abd4c98e7c94","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:1B:57:FB","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"9da48d40-d974-4cdf-b0fb-1a87814c4644"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:46:13.782219Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -628,9 +677,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:42 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -638,11 +687,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 34c2d697-f4ff-4a99-b20a-fe62ee49c3ca + - 906ada5c-93d8-4b97-a479-244f1e84fd2a status: 200 OK code: 200 - duration: 54.007541ms - - id: 13 + duration: 63.074833ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -658,7 +707,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -668,7 +717,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -677,9 +726,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:42 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -687,11 +736,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5dcca8f2-8bf0-422e-9c5e-f8fa964f379c + - f2bb72de-f23e-41fd-a13f-fa6c3e4aba42 status: 200 OK code: 200 - duration: 28.595916ms - - id: 14 + duration: 26.645458ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -707,7 +756,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -717,7 +766,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -726,9 +775,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:42 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -736,11 +785,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a9bfcf66-eb27-451d-82f6-e0b50e504eff + - b331df6e-b5bb-4f3f-bef9-0ba35d175f70 status: 200 OK code: 200 - duration: 282.210708ms - - id: 15 + duration: 100.908708ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -756,7 +805,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -766,7 +815,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -775,9 +824,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -785,11 +834,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee1d6738-abb2-4c83-a2ca-d382f12b622c + - 150cc89a-8f0c-4f45-acdb-cd98fb3b8a08 status: 200 OK code: 200 - duration: 34.85925ms - - id: 16 + duration: 28.02725ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -805,7 +854,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -815,7 +864,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -824,9 +873,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:11 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -834,11 +883,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f78d77d-b50b-4f58-ae1b-0fa5284970e5 + - 2bddc659-035e-412e-b81d-deee9441949d status: 200 OK code: 200 - duration: 115.415834ms - - id: 17 + duration: 113.878584ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -854,7 +903,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -864,7 +913,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -873,9 +922,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -883,11 +932,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5e956672-31bb-40c3-b123-581b64246484 + - 458da51a-5e8a-47f5-a213-9d32c32a91e7 status: 200 OK code: 200 - duration: 88.116208ms - - id: 18 + duration: 97.825583ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -903,7 +952,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=793dc253-54ba-4634-8693-511977de1571&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -913,7 +962,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:45:39.082331Z","id":"e0941ed0-ca65-4182-8bd6-abd4c98e7c94","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:1B:57:FB","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"9da48d40-d974-4cdf-b0fb-1a87814c4644"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:46:13.782219Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -922,9 +971,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -932,11 +981,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a5492b6-c7d2-4777-83b0-b29cdc8864f5 + - 2917b399-825b-4a45-ac14-6327ef67eaf0 status: 200 OK code: 200 - duration: 66.922333ms - - id: 19 + duration: 47.731917ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -952,7 +1001,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -962,7 +1011,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -971,9 +1020,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -981,11 +1030,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6926f4e-9dc9-4eb0-b9af-5f9390068317 + - 7a57d612-c53f-413d-98a4-5d4106883c35 status: 200 OK code: 200 - duration: 33.627458ms - - id: 20 + duration: 19.976792ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1001,7 +1050,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1011,7 +1060,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1020,9 +1069,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1030,11 +1079,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4df45a12-0bcb-4f59-8beb-58f35799ec12 + - 7f8f21a3-0eff-471a-b88a-31bfb67b7818 status: 200 OK code: 200 - duration: 137.896541ms - - id: 21 + duration: 131.365167ms + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1050,7 +1099,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -1060,7 +1109,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -1069,9 +1118,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1079,11 +1128,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a24d72d8-b0e1-4da6-839c-cb817496515e + - 49476e95-54f6-4332-9ab1-3bb7b13bc2a3 status: 200 OK code: 200 - duration: 97.00325ms - - id: 22 + duration: 91.372417ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1099,7 +1148,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=793dc253-54ba-4634-8693-511977de1571&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -1109,7 +1158,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:11:40.357876Z","id":"78fedf81-2719-407b-a1fa-f4d5cff2357d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1F:98:08","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:12:05.101547Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.52.2/22","created_at":"2025-06-30T15:45:39.082331Z","id":"e0941ed0-ca65-4182-8bd6-abd4c98e7c94","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:1B:57:FB","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"9da48d40-d974-4cdf-b0fb-1a87814c4644"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:46:13.782219Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -1118,9 +1167,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:43 GMT + - Mon, 30 Jun 2025 15:49:12 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1128,11 +1177,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a6c4a13f-d5bf-4f0a-8e62-5b4ad1564b14 + - a2e264c1-7fcd-443c-9d1a-c20c798cf8b7 status: 200 OK code: 200 - duration: 44.711875ms - - id: 23 + duration: 52.1815ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1160,7 +1209,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -1169,9 +1218,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:44 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1179,11 +1228,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ea8f0c7b-b386-45f2-b1e8-044941157a0d + - d3c00a21-d448-4e1e-9330-956f4fd49ee6 status: 200 OK code: 200 - duration: 632.156208ms - - id: 24 + duration: 630.946ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1199,7 +1248,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -1209,7 +1258,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -1218,9 +1267,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:44 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1228,11 +1277,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8662aa5d-80c1-4828-a9db-46e8e44fa010 + - 6b63fb69-88d6-4159-8ee0-c7cd098568b7 status: 200 OK code: 200 - duration: 31.07225ms - - id: 25 + duration: 34.513292ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1248,7 +1297,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1258,7 +1307,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1267,9 +1316,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:44 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1277,11 +1326,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c7349c8-9540-43a6-a986-23b227f4d717 + - 43734c64-1d5e-474b-82dd-da324f8c2862 status: 200 OK code: 200 - duration: 104.33325ms - - id: 26 + duration: 122.661083ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1297,7 +1346,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1307,7 +1356,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1316,9 +1365,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:45 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1326,11 +1375,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5cb3911a-f2b8-4615-8856-bde56df6681b + - 136f0ebe-b6bf-43d1-9d7f-0a7c19e17d94 status: 200 OK code: 200 - duration: 134.759417ms - - id: 27 + duration: 125.61825ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1348,7 +1397,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: PATCH response: proto: HTTP/2.0 @@ -1358,7 +1407,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1367,9 +1416,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:45 GMT + - Mon, 30 Jun 2025 15:49:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1377,11 +1426,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a4cf309-bb03-428b-9e34-eba0bf9d7f4b + - e8f740b4-5f88-42ec-9818-9d9dcbc0bc15 status: 200 OK code: 200 - duration: 171.870375ms - - id: 28 + duration: 186.427375ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1397,7 +1446,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1407,7 +1456,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1416,9 +1465,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:45 GMT + - Mon, 30 Jun 2025 15:49:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1426,11 +1475,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - da232772-be63-4d43-a7d1-ac39ff3d8186 + - 3990f1c2-0240-4ec5-83cf-1ca0a60f5df9 status: 200 OK code: 200 - duration: 179.777792ms - - id: 29 + duration: 117.627833ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1446,7 +1495,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/097047a6-a8b0-4610-b5c0-7a599084b266 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/08787911-7f63-4e39-9bb7-f6dc428b2fdb method: DELETE response: proto: HTTP/2.0 @@ -1463,9 +1512,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:45 GMT + - Mon, 30 Jun 2025 15:49:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1473,11 +1522,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d74ca40b-7a86-4c1e-802d-5541c06b6fe7 + - 9d80945e-953d-41d0-97ef-865610faadfe status: 204 No Content code: 204 - duration: 298.454791ms - - id: 30 + duration: 196.335625ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1493,7 +1542,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1503,7 +1552,7 @@ interactions: trailer: {} content_length: 1318 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"097047a6-a8b0-4610-b5c0-7a599084b266","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"08787911-7f63-4e39-9bb7-f6dc428b2fdb","ip":"172.16.52.2","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1318" @@ -1512,9 +1561,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:14:45 GMT + - Mon, 30 Jun 2025 15:49:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1522,11 +1571,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa879db0-f519-4a7c-9356-a0daa0dcf344 + - 9cbc27ba-d598-420d-be46-eb5ebf66d89e status: 200 OK code: 200 - duration: 145.310333ms - - id: 31 + duration: 135.600917ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1542,7 +1591,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1552,7 +1601,7 @@ interactions: trailer: {} content_length: 1069 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1069" @@ -1561,9 +1610,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:16 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1571,11 +1620,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8246fb84-0bc8-4ce0-b43b-433b29a6b100 + - 3d11b338-43cb-4997-9971-584e5831ecf9 status: 200 OK code: 200 - duration: 131.3485ms - - id: 32 + duration: 126.389458ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1586,14 +1635,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","ipam_config":{}}}}' + body: '{"endpoint_spec":{"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","ipam_config":{}}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/endpoints method: POST response: proto: HTTP/2.0 @@ -1603,7 +1652,7 @@ interactions: trailer: {} content_length: 243 uncompressed: false - body: '{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}' + body: '{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}' headers: Content-Length: - "243" @@ -1612,9 +1661,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:18 GMT + - Mon, 30 Jun 2025 15:49:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1622,11 +1671,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a33191a9-5653-4dae-ae3d-7e248a867e26 + - d376e07a-49cb-4cc1-b396-57f01ef55bf2 status: 200 OK code: 200 - duration: 2.917245792s - - id: 33 + duration: 2.772778042s + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1642,7 +1691,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1652,7 +1701,7 @@ interactions: trailer: {} content_length: 1319 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1319" @@ -1661,9 +1710,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:19 GMT + - Mon, 30 Jun 2025 15:49:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge01) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1671,11 +1720,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1735708-37ba-432b-a3a6-09e2f97f42ab + - 3614e402-dfdb-4177-823d-4f5f4e90bb40 status: 200 OK code: 200 - duration: 174.318042ms - - id: 34 + duration: 151.297459ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1691,7 +1740,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1701,7 +1750,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1710,9 +1759,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1720,11 +1769,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - daa5bc60-a879-45e9-ab4b-924220062bb4 + - 6c955908-4a48-4df3-a237-62bda3cdd956 status: 200 OK code: 200 - duration: 181.79925ms - - id: 35 + duration: 170.82875ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1740,7 +1789,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -1750,7 +1799,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -1759,9 +1808,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1769,11 +1818,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfbe2665-b8b4-4365-8aaf-22ef51aeb89c + - 437909b1-cfba-47c4-ac42-6471af681f74 status: 200 OK code: 200 - duration: 88.890542ms - - id: 36 + duration: 111.846417ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1789,7 +1838,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04ed2bfc-c084-405a-8658-8df7dfa42e05&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -1799,7 +1848,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:49:46.403648Z","id":"d4a01ef8-1f78-4b71-abf7-359ad717ac27","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:18:1C:93","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"459a4b06-c799-4372-893c-488a439f49ae"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:49:48.142401Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -1808,9 +1857,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1818,11 +1867,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b4542bc-bd8f-47ba-9455-556f45506b6d + - 07e15620-365a-49f6-b4fb-a4ed66e0075b status: 200 OK code: 200 - duration: 159.890167ms - - id: 37 + duration: 56.661958ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1838,7 +1887,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -1848,7 +1897,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -1857,9 +1906,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1867,11 +1916,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f60b4f70-6c6e-4827-b8e2-f7a553846144 + - 9aa71745-033d-4b9d-8715-a6faf44319d5 status: 200 OK code: 200 - duration: 29.363833ms - - id: 38 + duration: 34.001708ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -1887,7 +1936,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -1897,7 +1946,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -1906,9 +1955,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1916,11 +1965,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e9214d29-8ddb-4210-9dfd-42dccec75f32 + - da0e6ce9-97e2-4357-a5af-d50f5c3f2320 status: 200 OK code: 200 - duration: 26.189667ms - - id: 39 + duration: 35.479583ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -1936,7 +1985,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -1946,7 +1995,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -1955,9 +2004,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1965,11 +2014,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de98b97c-8037-4768-bcad-a5f2daefceff + - 658b8721-bac8-4af5-8059-de6ba99ae506 status: 200 OK code: 200 - duration: 120.307958ms - - id: 40 + duration: 154.118291ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -1985,7 +2034,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -1995,7 +2044,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -2004,9 +2053,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:49 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2014,11 +2063,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 83fb91cc-6ba3-49a6-bf3e-a28fdd5ceceb + - 757d1f02-1e88-496f-acdf-6571281027d1 status: 200 OK code: 200 - duration: 30.72875ms - - id: 41 + duration: 35.709875ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2034,7 +2083,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -2044,7 +2093,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -2053,9 +2102,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2063,11 +2112,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f07d4569-e631-46bc-932b-47b1cd3cf945 + - 434b26dc-9893-45cd-ae88-8d8dc29e7669 status: 200 OK code: 200 - duration: 118.265125ms - - id: 42 + duration: 35.701042ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2083,7 +2132,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2093,7 +2142,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2102,9 +2151,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2112,11 +2161,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c7b1364-5473-4f04-9da6-e8ad8b8dfca2 + - 4de95020-26de-4dcf-8982-b1e2c98e2c5a status: 200 OK code: 200 - duration: 132.13ms - - id: 43 + duration: 111.28525ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2132,7 +2181,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -2142,7 +2191,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -2151,9 +2200,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2161,11 +2210,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 075d4073-9212-4eb9-9862-a8f40038a7bd + - f68408fd-3907-4a22-93b8-520eabbd0a51 status: 200 OK code: 200 - duration: 93.174333ms - - id: 44 + duration: 94.436834ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2181,7 +2230,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04ed2bfc-c084-405a-8658-8df7dfa42e05&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -2191,7 +2240,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:49:46.403648Z","id":"d4a01ef8-1f78-4b71-abf7-359ad717ac27","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:18:1C:93","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"459a4b06-c799-4372-893c-488a439f49ae"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:49:48.142401Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -2200,9 +2249,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2210,11 +2259,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bebb1c55-61f5-4716-acd5-de8ddce636c3 + - 3d26b1b7-fda1-49a7-98a9-6e7581fd036e status: 200 OK code: 200 - duration: 65.187291ms - - id: 45 + duration: 48.51625ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2230,7 +2279,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -2238,20 +2287,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1064" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2259,11 +2308,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a459e3c9-7b63-4932-a58c-505fb6d4bc9f + - 6c4801a3-eb2b-4707-98eb-ad70e05409c9 status: 200 OK code: 200 - duration: 35.000667ms - - id: 46 + duration: 29.088041ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2279,7 +2328,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -2287,20 +2336,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1071" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2308,11 +2357,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e83091b6-f613-454a-96c6-1e8bed8f8884 + - a2711a1a-a4e0-4abb-a0c4-fabc7b310190 status: 200 OK code: 200 - duration: 34.986833ms - - id: 47 + duration: 49.377833ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2328,7 +2377,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2338,7 +2387,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2347,9 +2396,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2357,11 +2406,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b812746c-2093-4a69-8ec3-c576ae5198d7 + - ad7c6775-6b7f-497d-ba62-92608dd1af25 status: 200 OK code: 200 - duration: 125.5965ms - - id: 48 + duration: 134.195ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2377,7 +2426,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -2387,7 +2436,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -2396,9 +2445,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:18 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2406,11 +2455,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3a91f812-e5d6-4141-8286-ac67dabb9b2c + - 45aa3200-d15c-415f-99fd-a204ca582b98 status: 200 OK code: 200 - duration: 123.371833ms - - id: 49 + duration: 91.699875ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2426,7 +2475,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04cee5e1-57cc-474a-8d0f-b0b1bb39ce32&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=04ed2bfc-c084-405a-8658-8df7dfa42e05&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -2436,7 +2485,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.12.2/22","created_at":"2025-06-30T15:15:17.972048Z","id":"33c2c4cc-58a6-4d13-9c46-81ce7b9a1728","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:17:43:21","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:15:19.322773Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:49:46.403648Z","id":"d4a01ef8-1f78-4b71-abf7-359ad717ac27","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:18:1C:93","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"459a4b06-c799-4372-893c-488a439f49ae"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:49:48.142401Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -2445,9 +2494,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:50 GMT + - Mon, 30 Jun 2025 15:50:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2455,11 +2504,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5dcc56f-60b1-4dcf-9412-d71cfc9681ae + - af6f9007-7e81-42be-be5d-a536226276d9 status: 200 OK code: 200 - duration: 47.862ms - - id: 50 + duration: 67.181625ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2475,7 +2524,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2485,7 +2534,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2494,9 +2543,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:51 GMT + - Mon, 30 Jun 2025 15:50:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2504,11 +2553,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 64ec324e-37a9-43b1-8617-7f14c7246b57 + - 80743269-87e8-4c3e-9731-7d4700693b1e status: 200 OK code: 200 - duration: 653.151666ms - - id: 51 + duration: 327.844458ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2524,7 +2573,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2534,7 +2583,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2543,9 +2592,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:51 GMT + - Mon, 30 Jun 2025 15:50:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2553,11 +2602,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b3c87bf8-ed11-43ea-86cb-32bdca5d0e28 + - 23fd648c-c860-436f-a799-4fcf7fd024a7 status: 200 OK code: 200 - duration: 172.185542ms - - id: 52 + duration: 135.84975ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2575,7 +2624,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: PATCH response: proto: HTTP/2.0 @@ -2585,7 +2634,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2594,9 +2643,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:52 GMT + - Mon, 30 Jun 2025 15:50:19 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2604,11 +2653,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bdd58f5-1f3a-4e47-937d-d05169e3fea3 + - b70807fa-2602-4505-80f2-299afc12ea6d status: 200 OK code: 200 - duration: 148.648583ms - - id: 53 + duration: 190.204834ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2624,7 +2673,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2634,7 +2683,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -2643,9 +2692,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:52 GMT + - Mon, 30 Jun 2025 15:50:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2653,11 +2702,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fc009485-f77d-40ac-a2e2-9eb913e20eaf + - 5858ad55-6ebc-4a08-8af0-74590e4d952b status: 200 OK code: 200 - duration: 146.258958ms - - id: 54 + duration: 157.29375ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2673,7 +2722,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/d0ace651-29cb-40ac-aeeb-4c7539d8be8a + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9 method: DELETE response: proto: HTTP/2.0 @@ -2690,9 +2739,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:52 GMT + - Mon, 30 Jun 2025 15:50:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2700,11 +2749,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - caf9ee59-c211-4098-8b59-cbff64c3cb4b + - 05aa0150-eb23-4522-bd1c-e809b3101e4d status: 204 No Content code: 204 - duration: 550.000625ms - - id: 55 + duration: 578.505959ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2720,7 +2769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2730,7 +2779,7 @@ interactions: trailer: {} content_length: 1318 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"d0ace651-29cb-40ac-aeeb-4c7539d8be8a","ip":"172.16.12.2","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"ipam","service_ip":"172.16.12.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"c6d98bfb-7dcb-446c-a5e6-ed230d0e21e9","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1318" @@ -2739,9 +2788,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:15:52 GMT + - Mon, 30 Jun 2025 15:50:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2749,11 +2798,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 40436901-7f3a-46e8-924d-f69896b1ceec + - 511356df-e57b-4ed4-b468-83f73e44084b status: 200 OK code: 200 - duration: 115.918125ms - - id: 56 + duration: 367.374667ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2769,7 +2818,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2779,7 +2828,7 @@ interactions: trailer: {} content_length: 1069 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1069" @@ -2788,9 +2837,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:23 GMT + - Mon, 30 Jun 2025 15:50:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2798,11 +2847,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 032c8463-1794-42de-94ee-6c2c2af37958 + - 0aa1d1da-0cec-4856-9ed2-1f4d7d3d2007 status: 200 OK code: 200 - duration: 134.160916ms - - id: 57 + duration: 474.507458ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2813,14 +2862,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","service_ip":"172.16.12.4/22"}}}' + body: '{"endpoint_spec":{"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","service_ip":"172.16.20.4/22"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/endpoints method: POST response: proto: HTTP/2.0 @@ -2830,7 +2879,7 @@ interactions: trailer: {} content_length: 245 uncompressed: false - body: '{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}' + body: '{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}' headers: Content-Length: - "245" @@ -2839,7 +2888,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:23 GMT + - Mon, 30 Jun 2025 15:50:52 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2849,11 +2898,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6494064e-9d25-4819-96f8-11e9f892a1f0 + - 1eebe217-0a0b-43e0-9f83-e663e87da4f6 status: 200 OK code: 200 - duration: 675.360166ms - - id: 58 + duration: 855.791917ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2869,7 +2918,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2879,7 +2928,7 @@ interactions: trailer: {} content_length: 1321 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1321" @@ -2888,7 +2937,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:23 GMT + - Mon, 30 Jun 2025 15:50:52 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -2898,11 +2947,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 16b7f486-aa31-4157-b255-a03d13f94d9b + - d5e9b3d5-f37a-4151-9621-1d37847feb2d status: 200 OK code: 200 - duration: 111.719709ms - - id: 59 + duration: 246.459166ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -2918,7 +2967,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -2928,7 +2977,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -2937,9 +2986,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:53 GMT + - Mon, 30 Jun 2025 15:51:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2947,11 +2996,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - db868bd4-9ee2-4fb3-9087-f57700947653 + - e3fbc671-1ade-4b40-bfa4-f29ae06db0bd status: 200 OK code: 200 - duration: 170.755ms - - id: 60 + duration: 181.521666ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -2967,7 +3016,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -2977,7 +3026,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -2986,9 +3035,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:22 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2996,11 +3045,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d8b7181c-7de0-4fbc-9d95-8ab34da135a7 + - ac06d141-2fb7-47fc-802c-528c693d9fef status: 200 OK code: 200 - duration: 117.274834ms - - id: 61 + duration: 161.757792ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3016,7 +3065,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -3026,7 +3075,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -3035,9 +3084,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3045,11 +3094,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f6d9d808-f1b8-4c9c-ac7d-451fd18f8ae4 + - 62767c97-93eb-4150-a339-5ae15f608852 status: 200 OK code: 200 - duration: 29.381ms - - id: 62 + duration: 22.819083ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3065,7 +3114,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3075,7 +3124,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3084,9 +3133,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3094,11 +3143,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b0fe6d28-3782-4bf5-9ad1-a28c6078afcc + - 9d50ab5e-45bd-4673-9100-93a28db5f649 status: 200 OK code: 200 - duration: 144.99475ms - - id: 63 + duration: 128.930834ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3114,7 +3163,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -3122,20 +3171,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1064 + content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1064" + - "1071" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3143,11 +3192,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f248f9e4-661d-4fb0-bd89-847d6a1cb65b + - c2661010-3f15-4b88-a0e2-ee08e73f00de status: 200 OK code: 200 - duration: 24.46575ms - - id: 64 + duration: 27.322375ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3163,7 +3212,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -3171,20 +3220,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1071 + content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1071" + - "1064" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3192,11 +3241,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7850a1fd-e55b-4272-bd1e-fad8a07096b3 + - c50885b3-f2c0-47e1-8160-7d303254431d status: 200 OK code: 200 - duration: 24.454084ms - - id: 65 + duration: 43.733167ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3212,7 +3261,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3222,7 +3271,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3231,9 +3280,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3241,11 +3290,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ec2dc19-1dce-469b-91fb-780f2c085d4a + - bd2aebfa-62df-44ee-9e62-679920086060 status: 200 OK code: 200 - duration: 148.609792ms - - id: 66 + duration: 121.717875ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3261,7 +3310,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -3271,7 +3320,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -3280,9 +3329,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:54 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3290,11 +3339,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a86ff611-f9e1-40d2-9745-5b6850a2efc9 + - 47915dff-d27f-4309-aa01-ec374c159443 status: 200 OK code: 200 - duration: 96.187042ms - - id: 67 + duration: 90.437208ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3310,7 +3359,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -3320,7 +3369,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -3329,9 +3378,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3339,11 +3388,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a8f0055d-a472-4d73-8840-576eb92bf96d + - 7ceec312-3a77-4c26-b245-9c41efbdad4e status: 200 OK code: 200 - duration: 27.347875ms - - id: 68 + duration: 29.951083ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3359,7 +3408,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -3369,7 +3418,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -3378,9 +3427,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3388,11 +3437,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 292c7aeb-2cc4-4205-b66f-cee2fd488ad4 + - fc41f595-7151-46b8-8197-7883e9632726 status: 200 OK code: 200 - duration: 68.921792ms - - id: 69 + duration: 35.320666ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3408,7 +3457,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3418,7 +3467,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3427,9 +3476,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3437,11 +3486,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f7935421-1bd8-492b-95c8-1270a293d909 + - 033f430b-c23b-43b0-b668-61b1cbf484e6 status: 200 OK code: 200 - duration: 138.11275ms - - id: 70 + duration: 131.485209ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3457,7 +3506,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -3467,7 +3516,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -3476,9 +3525,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3486,11 +3535,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9fa96272-f012-4216-909a-32eae1a8c94f + - 238e2629-967b-4ca3-9740-22515c5a3afe status: 200 OK code: 200 - duration: 105.484916ms - - id: 71 + duration: 93.873ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3506,7 +3555,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3516,7 +3565,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3525,9 +3574,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3535,11 +3584,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6869aa7-e09b-4ad8-a4d8-f6c0e171e863 + - 24ac3315-ab70-4427-b63f-ce6dfc835b1a status: 200 OK code: 200 - duration: 127.99125ms - - id: 72 + duration: 157.845208ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3555,7 +3604,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3565,7 +3614,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3574,9 +3623,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3584,11 +3633,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - beb0127e-f4e2-47b2-8dd8-754f4bc2ccbb + - aed11271-0da2-48e1-88f3-f1bf8e7947b8 status: 200 OK code: 200 - duration: 114.241167ms - - id: 73 + duration: 118.541417ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3606,7 +3655,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: PATCH response: proto: HTTP/2.0 @@ -3616,7 +3665,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3625,9 +3674,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:55 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3635,11 +3684,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 62abfcc6-340b-456e-be24-2c0501bfd138 + - f8497f2c-99dd-4157-8630-d22ee00e9965 status: 200 OK code: 200 - duration: 184.526584ms - - id: 74 + duration: 182.535958ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3655,7 +3704,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3665,7 +3714,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3674,9 +3723,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:56 GMT + - Mon, 30 Jun 2025 15:51:24 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3684,11 +3733,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4559bd79-2fa4-419a-8300-a894abd33dab + - c85ca7a0-093c-4565-bf30-02a708624060 status: 200 OK code: 200 - duration: 139.055917ms - - id: 75 + duration: 127.57575ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3704,7 +3753,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/16b104b8-a9be-49e4-a7ac-42098c4afec9 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/87d07f85-bc30-4fe2-bb55-c224fb55590b method: DELETE response: proto: HTTP/2.0 @@ -3721,9 +3770,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:56 GMT + - Mon, 30 Jun 2025 15:51:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3731,11 +3780,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6a769462-1b6b-4839-8ed2-cee481841af4 + - bebd1b79-e3f5-4eb9-8f2d-47a59ed89385 status: 204 No Content code: 204 - duration: 152.918458ms - - id: 76 + duration: 347.788042ms + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3751,7 +3800,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3761,7 +3810,7 @@ interactions: trailer: {} content_length: 1320 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"16b104b8-a9be-49e4-a7ac-42098c4afec9","ip":"172.16.12.4","name":null,"port":5432,"private_network":{"private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","provisioning_mode":"static","service_ip":"172.16.12.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"87d07f85-bc30-4fe2-bb55-c224fb55590b","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1320" @@ -3770,9 +3819,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:16:56 GMT + - Mon, 30 Jun 2025 15:51:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3780,11 +3829,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e2ea6e65-5750-4b6f-90e6-7ad7522808a1 + - 5516e456-3f21-4562-bc35-20d523dcfdae status: 200 OK code: 200 - duration: 133.74325ms - - id: 77 + duration: 109.827583ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3800,7 +3849,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3810,7 +3859,7 @@ interactions: trailer: {} content_length: 1069 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1069" @@ -3819,9 +3868,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:26 GMT + - Mon, 30 Jun 2025 15:51:55 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3829,11 +3878,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e8d1708c-62f5-44f3-83be-91dbe74bc7bf + - acd6a5ff-3be0-4b5e-8770-ea4fdd1082b4 status: 200 OK code: 200 - duration: 119.009958ms - - id: 78 + duration: 194.92975ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3844,14 +3893,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","service_ip":"172.16.20.4/22"}}}' + body: '{"endpoint_spec":{"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","service_ip":"172.16.52.4/22"}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/endpoints method: POST response: proto: HTTP/2.0 @@ -3861,7 +3910,7 @@ interactions: trailer: {} content_length: 245 uncompressed: false - body: '{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}' + body: '{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}' headers: Content-Length: - "245" @@ -3870,7 +3919,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:26 GMT + - Mon, 30 Jun 2025 15:51:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3880,11 +3929,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aa3a5c94-b2f4-4fcc-af9c-6684df8db587 + - 705783f5-1b38-41d9-a640-88c353829458 status: 200 OK code: 200 - duration: 464.216708ms - - id: 79 + duration: 657.504917ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -3900,7 +3949,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3910,7 +3959,7 @@ interactions: trailer: {} content_length: 1321 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1321" @@ -3919,7 +3968,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:27 GMT + - Mon, 30 Jun 2025 15:51:56 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3929,11 +3978,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1cf1132a-f801-4afa-92a6-4df40e257c00 + - b9d33cb3-cb16-4554-bbeb-f97710942b70 status: 200 OK code: 200 - duration: 140.284834ms - - id: 80 + duration: 117.886584ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -3949,7 +3998,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -3959,7 +4008,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -3968,7 +4017,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:57 GMT + - Mon, 30 Jun 2025 15:52:26 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -3978,11 +4027,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a78219b6-3b09-48d9-a126-f5d0e303ba19 + - c1aba94f-c0d6-4f6e-8a37-fa0074f8d9de status: 200 OK code: 200 - duration: 153.54475ms - - id: 81 + duration: 152.443625ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -3998,7 +4047,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -4008,7 +4057,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -4017,7 +4066,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:57 GMT + - Mon, 30 Jun 2025 15:52:26 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4027,11 +4076,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f8cc0f5c-1d74-4d10-b574-fd9900448bc7 + - 9119446f-85e2-4fa5-9662-a1c73c287ae9 status: 200 OK code: 200 - duration: 105.336292ms - - id: 82 + duration: 92.827833ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4047,7 +4096,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -4057,7 +4106,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -4066,7 +4115,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:17:57 GMT + - Mon, 30 Jun 2025 15:52:26 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4076,59 +4125,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0887e8b2-897e-4fef-a8a3-e6270a5e0fe0 + - 7d873f1e-5f58-4745-8c8a-81845dc29e85 status: 200 OK code: 200 - duration: 44.549125ms - - id: 83 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 0 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: "" - form: {} - headers: - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 - method: GET - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 109 - uncompressed: false - body: '{"message":"upstream connect error or disconnect/reset before headers. reset reason: connection termination"}' - headers: - Content-Length: - - "109" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:17:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge02) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 102f0e78-6446-441e-8f5a-4b795abd5e61 - status: 503 Service Unavailable - code: 503 - duration: 1.652637166s + duration: 37.928459ms - id: 84 request: proto: HTTP/1.1 @@ -4145,7 +4145,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -4155,7 +4155,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -4164,7 +4164,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:26 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4174,10 +4174,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 475f4c76-75ba-4b63-b17c-19df7dfe17fd + - 680b8217-4c1d-4900-b809-d7150b9b8da2 status: 200 OK code: 200 - duration: 25.531583ms + duration: 32.068167ms - id: 85 request: proto: HTTP/1.1 @@ -4194,7 +4194,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4204,7 +4204,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4213,7 +4213,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:26 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4223,10 +4223,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 70706c44-b2b8-4219-a98e-5f9c16073446 + - 610dd689-84dd-4526-b95c-4f1a8b6c80f1 status: 200 OK code: 200 - duration: 131.027167ms + duration: 148.054625ms - id: 86 request: proto: HTTP/1.1 @@ -4243,7 +4243,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -4253,7 +4253,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -4262,7 +4262,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4272,10 +4272,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - be3ddc8a-577d-4ec0-978f-db4da9e829c0 + - 12ce5d74-35af-44a6-8f54-42b11ba3727c status: 200 OK code: 200 - duration: 30.432125ms + duration: 21.57375ms - id: 87 request: proto: HTTP/1.1 @@ -4292,7 +4292,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -4302,7 +4302,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -4311,7 +4311,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4321,10 +4321,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 458d361c-bb3e-4179-9fbb-2ff75ca4f1db + - e5af4cae-e3d0-407e-9edc-141c73f6c729 status: 200 OK code: 200 - duration: 62.924541ms + duration: 30.737125ms - id: 88 request: proto: HTTP/1.1 @@ -4341,7 +4341,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4351,7 +4351,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4360,7 +4360,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4370,10 +4370,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 72ea792b-99d8-416b-bce9-5838b3ac57f4 + - 2f229e90-e5c9-4cf8-845b-03feba9765f3 status: 200 OK code: 200 - duration: 132.449375ms + duration: 138.417792ms - id: 89 request: proto: HTTP/1.1 @@ -4390,7 +4390,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -4400,7 +4400,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -4409,7 +4409,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:01 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4419,10 +4419,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 67fd641d-5e1e-4290-849b-95f4147e4350 + - d881ff6f-6deb-4fb3-9ca8-e51d78e8042e status: 200 OK code: 200 - duration: 94.27125ms + duration: 80.730709ms - id: 90 request: proto: HTTP/1.1 @@ -4439,7 +4439,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: GET response: proto: HTTP/2.0 @@ -4449,7 +4449,7 @@ interactions: trailer: {} content_length: 1071 uncompressed: false - body: '{"created_at":"2025-06-30T15:14:44.202543Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:14:44.202543Z","id":"0da031ae-f5f2-4a7f-b62d-f7abe61c2171","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.12.0/22","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:14:44.202543Z","id":"aa74503f-8a0b-404f-a239-e55f54ace879","private_network_id":"04cee5e1-57cc-474a-8d0f-b0b1bb39ce32","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2074::/64","updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:14:44.202543Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:12.825799Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","name":"my_second_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:12.825799Z","id":"459a4b06-c799-4372-893c-488a439f49ae","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:12.825799Z","id":"e1610d4f-0d7e-4054-8876-218c0359e6c0","private_network_id":"04ed2bfc-c084-405a-8658-8df7dfa42e05","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:475d::/64","updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:12.825799Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1071" @@ -4458,7 +4458,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4468,10 +4468,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55c3edfd-2c5e-421a-b6d1-5dbf7d693f33 + - 3c2e4914-05bd-48c4-9677-d98bca0efa44 status: 200 OK code: 200 - duration: 117.256291ms + duration: 24.01625ms - id: 91 request: proto: HTTP/1.1 @@ -4488,7 +4488,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -4498,7 +4498,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -4507,7 +4507,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4517,10 +4517,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3fc37604-1741-4178-adf8-bd989327f12c + - bb4837d4-c25c-44fd-a413-bc0a8936863e status: 200 OK code: 200 - duration: 117.413542ms + duration: 34.439917ms - id: 92 request: proto: HTTP/1.1 @@ -4537,7 +4537,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4547,7 +4547,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4556,7 +4556,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4566,10 +4566,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8794a88c-3a97-47c2-a2ce-5fa37990a6f4 + - 12d86a26-2857-420d-bede-bcdb568ce960 status: 200 OK code: 200 - duration: 146.219916ms + duration: 110.91425ms - id: 93 request: proto: HTTP/1.1 @@ -4586,7 +4586,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -4596,7 +4596,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -4605,7 +4605,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:27 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4615,10 +4615,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4fae8e3b-793b-4639-abdc-572165717d16 + - b0a00b75-ed39-4882-aafa-5adfcc3d2907 status: 200 OK code: 200 - duration: 90.418083ms + duration: 103.908ms - id: 94 request: proto: HTTP/1.1 @@ -4635,7 +4635,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4645,7 +4645,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4654,7 +4654,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4664,10 +4664,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c5a483c5-4e7b-4c4c-a0a3-94b7bbeb687a + - 2db8dcf5-7776-4379-89ff-5a57f8b98d10 status: 200 OK code: 200 - duration: 143.215708ms + duration: 147.657958ms - id: 95 request: proto: HTTP/1.1 @@ -4684,7 +4684,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4694,7 +4694,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4703,7 +4703,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:02 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4713,10 +4713,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeb49817-04a3-4a3b-8060-0626a793914c + - 19f7631a-0d77-4a64-af2a-a0cb91d24e84 status: 200 OK code: 200 - duration: 147.221542ms + duration: 124.659667ms - id: 96 request: proto: HTTP/1.1 @@ -4735,7 +4735,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: PATCH response: proto: HTTP/2.0 @@ -4745,7 +4745,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4754,7 +4754,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:03 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4764,10 +4764,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 03163d8b-2215-4fd7-895c-e2ab168ff6b4 + - 6e62f528-c692-4923-a650-9d26c104f028 status: 200 OK code: 200 - duration: 171.863375ms + duration: 136.571125ms - id: 97 request: proto: HTTP/1.1 @@ -4784,7 +4784,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4794,7 +4794,7 @@ interactions: trailer: {} content_length: 1314 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1314" @@ -4803,7 +4803,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:03 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4813,10 +4813,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ffd3000-291f-4994-bb63-21cb621d7152 + - aeb7e882-a15b-41ae-a681-33f7dfe1e966 status: 200 OK code: 200 - duration: 104.269958ms + duration: 126.251084ms - id: 98 request: proto: HTTP/1.1 @@ -4833,7 +4833,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/715df91b-750c-4a62-a51f-dfb27237f8c9 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/endpoints/5a2db719-aeb5-4442-9fcc-c760141d7160 method: DELETE response: proto: HTTP/2.0 @@ -4850,7 +4850,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:03 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4860,10 +4860,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 86a33886-7f90-4860-8054-554d6e0d6394 + - 28801844-2a58-4736-9deb-bd4737532553 status: 204 No Content code: 204 - duration: 146.723333ms + duration: 245.944667ms - id: 99 request: proto: HTTP/1.1 @@ -4880,7 +4880,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4890,7 +4890,7 @@ interactions: trailer: {} content_length: 1320 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"715df91b-750c-4a62-a51f-dfb27237f8c9","ip":"172.16.20.4","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"static","service_ip":"172.16.20.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"5a2db719-aeb5-4442-9fcc-c760141d7160","ip":"172.16.52.4","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"static","service_ip":"172.16.52.4/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"configuring","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1320" @@ -4899,7 +4899,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:03 GMT + - Mon, 30 Jun 2025 15:52:28 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4909,10 +4909,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3bf6625e-5e20-4c8f-8418-b553194966bd + - 6335b6e0-7c22-48b8-a48d-c48bfb6c92a3 status: 200 OK code: 200 - duration: 131.727333ms + duration: 131.637833ms - id: 100 request: proto: HTTP/1.1 @@ -4929,7 +4929,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04cee5e1-57cc-474a-8d0f-b0b1bb39ce32 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/04ed2bfc-c084-405a-8658-8df7dfa42e05 method: DELETE response: proto: HTTP/2.0 @@ -4946,7 +4946,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:04 GMT + - Mon, 30 Jun 2025 15:52:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -4956,10 +4956,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e47aec01-14c1-4899-92ab-a060820d13b5 + - b392530f-6107-4cad-9969-110abc98abd2 status: 204 No Content code: 204 - duration: 2.370821541s + duration: 5.567671125s - id: 101 request: proto: HTTP/1.1 @@ -4976,7 +4976,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -4986,7 +4986,7 @@ interactions: trailer: {} content_length: 1069 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1069" @@ -4995,7 +4995,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:33 GMT + - Mon, 30 Jun 2025 15:52:59 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5005,10 +5005,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 97559421-04af-41bc-b6fb-ddf0c2536baf + - b98a536b-a982-42bc-88b0-4214f37b4c57 status: 200 OK code: 200 - duration: 132.597667ms + duration: 148.964209ms - id: 102 request: proto: HTTP/1.1 @@ -5020,14 +5020,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"endpoint_spec":{"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","ipam_config":{}}}}' + body: '{"endpoint_spec":{"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","ipam_config":{}}}}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/endpoints + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/endpoints method: POST response: proto: HTTP/2.0 @@ -5037,7 +5037,7 @@ interactions: trailer: {} content_length: 243 uncompressed: false - body: '{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}' + body: '{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}' headers: Content-Length: - "243" @@ -5046,7 +5046,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:36 GMT + - Mon, 30 Jun 2025 15:53:01 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5056,10 +5056,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 28a41e33-a047-497a-afc2-7b742ba5a7a9 + - bdcf4ad3-51f8-4461-af9d-1521e12b2f18 status: 200 OK code: 200 - duration: 2.59575125s + duration: 2.754860083s - id: 103 request: proto: HTTP/1.1 @@ -5076,7 +5076,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5086,7 +5086,7 @@ interactions: trailer: {} content_length: 1319 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"initializing","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1319" @@ -5095,7 +5095,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:36 GMT + - Mon, 30 Jun 2025 15:53:02 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5105,10 +5105,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b7387e20-7c08-455f-b0ee-4ebf6ca01b48 + - 2fffa3a1-84b8-48ac-b989-174162e9c718 status: 200 OK code: 200 - duration: 117.991ms + duration: 132.841417ms - id: 104 request: proto: HTTP/1.1 @@ -5125,7 +5125,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5135,7 +5135,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -5144,7 +5144,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:06 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5154,10 +5154,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 704d874b-181f-432a-935e-c12e1af9b632 + - facb0a79-4a4a-45f0-98d9-7ed90d6f254a status: 200 OK code: 200 - duration: 130.992583ms + duration: 146.683417ms - id: 105 request: proto: HTTP/1.1 @@ -5174,7 +5174,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -5184,7 +5184,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -5193,7 +5193,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:06 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5203,10 +5203,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11ff23f8-c921-4d2e-b914-b34d166306ca + - fdb560f3-9481-4cf6-b490-1ad45c01b571 status: 200 OK code: 200 - duration: 121.007958ms + duration: 128.573625ms - id: 106 request: proto: HTTP/1.1 @@ -5223,7 +5223,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=793dc253-54ba-4634-8693-511977de1571&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -5233,7 +5233,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:18:35.178332Z","id":"4deecdeb-334b-4bbb-a81b-44a76424f6b2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1D:78:E5","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:18:36.392297Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.52.3/22","created_at":"2025-06-30T15:53:00.985823Z","id":"87521aae-986f-41ca-83ae-277a27304b3d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:14:1A:4D","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"9da48d40-d974-4cdf-b0fb-1a87814c4644"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:53:02.167434Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -5242,7 +5242,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:06 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5252,10 +5252,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0b5a4411-df80-4ac3-b4a7-b2bc16e2e2cf + - 37c4ab37-f925-4e49-a7d9-a52643cae88a status: 200 OK code: 200 - duration: 52.118958ms + duration: 87.53375ms - id: 107 request: proto: HTTP/1.1 @@ -5272,7 +5272,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -5282,7 +5282,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -5291,7 +5291,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:06 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5301,10 +5301,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ca30273-3f19-4a52-a581-31007758d3e9 + - 5fa7d771-6c7a-431e-bcad-046928402ce7 status: 200 OK code: 200 - duration: 32.918042ms + duration: 70.520417ms - id: 108 request: proto: HTTP/1.1 @@ -5321,7 +5321,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5331,7 +5331,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -5340,7 +5340,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:06 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5350,10 +5350,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98d08da8-c985-4656-8f07-398abd5677b1 + - aeed84a5-e63c-4e65-803b-92ac679e70ee status: 200 OK code: 200 - duration: 125.705333ms + duration: 127.802042ms - id: 109 request: proto: HTTP/1.1 @@ -5370,7 +5370,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -5380,7 +5380,7 @@ interactions: trailer: {} content_length: 1064 uncompressed: false - body: '{"created_at":"2025-06-30T15:11:37.771964Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:11:37.771964Z","id":"33fdeff0-2ff4-405c-a825-e6585816e41b","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.20.0/22","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:11:37.771964Z","id":"fb17db93-9acc-487d-b2f5-7a3ab56f3bd9","private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:78d1::/64","updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:11:37.771964Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:45:36.577289Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"793dc253-54ba-4634-8693-511977de1571","name":"my_private_network","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:45:36.577289Z","id":"9da48d40-d974-4cdf-b0fb-1a87814c4644","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.52.0/22","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:45:36.577289Z","id":"cc3f4c10-89c5-412f-b64f-963c792cdf93","private_network_id":"793dc253-54ba-4634-8693-511977de1571","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:3503::/64","updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:45:36.577289Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - "1064" @@ -5389,7 +5389,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:32 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5399,10 +5399,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 105e3889-b639-4dbe-b019-cd1bd551d274 + - 0c1dba17-1e6b-4e4d-8312-687b503df13c status: 200 OK code: 200 - duration: 27.421084ms + duration: 30.585375ms - id: 110 request: proto: HTTP/1.1 @@ -5419,7 +5419,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5429,7 +5429,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -5438,7 +5438,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5448,10 +5448,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 729a907b-05c2-4ddb-ae65-1960d25dcfab + - 969b7a9d-1fcc-412b-9eb1-46b4ca687792 status: 200 OK code: 200 - duration: 142.249125ms + duration: 117.827208ms - id: 111 request: proto: HTTP/1.1 @@ -5468,7 +5468,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240/certificate + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9/certificate method: GET response: proto: HTTP/2.0 @@ -5478,7 +5478,7 @@ interactions: trailer: {} content_length: 1723 uncompressed: false - body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVTVFzckdURXFRazNyVkNsME0zZi9lek50Mi9jd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTR5TUM0eU1CNFhEVEkxCk1EWXpNREUxTVRNd01Gb1hEVE0xTURZeU9ERTFNVE13TUZvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0eU1DNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUFvYitzYXFlNkRJckVRR2Q5WlJ4RTQrQTZFSi9maVpKQjdDRTBVNFE0ci84VlVEL25sMUVKTmRDckx3WWgKZ2Q2U2JLRUdhV0JIM08zWlZaVW9FVjR3NDdPQzRob2xPWDlGRmhvNzBudkhzaFUwazFZNFBNK1NCUjJITUFKagordVNMc2swQ2NWSWV5WjlYRkJDbmtmN2hTcEFZS3ppbUQ5cGtkU0pFMVIrUGxFQitBOWlpNGU5dXZ5dDZXNGplCm1ZQkt5MHZ4VisraEJ2QUhPbTM4azl2NGFSUXhWMHp0TnlGTUZ1cGVzbzhLcUVPVy84VjZSS0NpZkNwWmpIRkoKVUZrNk54dGE0TGFoYmRtcnZpVTVCNHoySEhMVGpNMmVVc214RHhid25ybHlsbUV5enI5ZUNQNDZFdDdCeWFtSgpaN0NnYmJRbEJSY1M5TWFwdDRLU3ljTzY5d0lEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck1qQXVNb2NFTXcvbXpZY0VyQkFVQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQUROenMyMERWME52T2x3K3kKNzlIRGdOaG9RNmhZU2pKV3EwNWtXbVg4RnkzUFg4cjdoVEhTVTJoYVdpdnJoZmJ1bUJsQ0FicnEzS3dnakk5YwowVUVOb2x5eFJrbG16S29GcTRhOUd3MVIxaCswdVZ5VWFtQnBGTEJaUVptZ2FrVkNmaEN5VHNtNnM5RSsrSFVsCmFTbTA0M3krRThRL252L2ZRY0hDU2grTG9oRDlhQUVVVGZHQ2ZXVHFsT0c4TnRTZzVzbVZRTjlXTVVzUHlFT2cKVDZJVzF5OUY2cVcva3pUb0JUSjl4SVF5aXpJWHZQMi9Jc3p4WTluQjdVK1RjSFZlWGZ3eC9iakQ0N3FRRmYwdwo4ejViQUVEN255T0tVY0JaVDNlNHRrVURkd3IyVG1pbkY2KzZpRXJ2RHc3UjZubXZUZXNHOFZncXkyejYzbndsCktRUWdqZz09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' + body: '{"content":"LS0tLS1CRUdJTiBDRVJUSUZJQ0FURS0tLS0tCk1JSURZRENDQWtpZ0F3SUJBZ0lVSnloNCtwUUY5VktWT1RWWnhMc3czckp0WUJnd0RRWUpLb1pJaHZjTkFRRUwKQlFBd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlZCQWdNQlZCaGNtbHpNUTR3REFZRFZRUUhEQVZRWVhKcApjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBU0JnTlZCQU1NQ3pFM01pNHhOaTQxTWk0eU1CNFhEVEkxCk1EWXpNREUxTkRjek1sb1hEVE0xTURZeU9ERTFORGN6TWxvd1ZqRUxNQWtHQTFVRUJoTUNSbEl4RGpBTUJnTlYKQkFnTUJWQmhjbWx6TVE0d0RBWURWUVFIREFWUVlYSnBjekVSTUE4R0ExVUVDZ3dJVTJOaGJHVjNZWGt4RkRBUwpCZ05WQkFNTUN6RTNNaTR4Tmk0MU1pNHlNSUlCSWpBTkJna3Foa2lHOXcwQkFRRUZBQU9DQVE4QU1JSUJDZ0tDCkFRRUF1Nkt6NVVOUnR4UUF5Z0NzNVpWUUg3dXdqUXF6aUlOTWdWSCtpZjVmRm9od0F1VENtMUNva0FsUWo2dG0KemRsTXRuUFBudmp3OWdTZmxIZFdFVDg5VGpSdGdBdzhubFo5cUg2UlQzZlJYNm43bDZ5a3hkdlIxUy9xRWhobgpCa2lmMGw5UFJkUVFVQlJ1VWlLaEdYZmFwNmhMS2xYVzJOQXlEVkxHdHk5d2xaclNyUkFGYVRYaStTTXp2QnQ2Cm9XbXI2TkhIMEFHRktxN0FrM2tRSFdrRzRxcGJZUGpUeXBBYis0cXk3bVdiOXJ0Z1FFR2FqWmZXUi8wTEhERU0KVjBPVmswZERXeGtUdmdpRWVZMlQ2aWFYUzY2K3IzS1VZekFRdmRtRmxYc3E2TDVIZm8yRWQxNGRqdlprK05oLwpVVmZJanlHamgxUXgyT3hUSGgrVVhkdGdUUUlEQVFBQm95WXdKREFpQmdOVkhSRUVHekFaZ2dzeE56SXVNVFl1Ck5USXVNb2NFMUMvKzg0Y0VyQkEwQWpBTkJna3Foa2lHOXcwQkFRc0ZBQU9DQVFFQWEyZ0NQbFR6ckE3TjRkZWcKUVZCZmdRNlhSOUcwYUM5V1YxWWpSaDh0bENUZTFUemRUNFFjM0tLMC9yM2FleFBqMjltREtUMnd6b09udm1XUgpEQzdVR1lJLzRhNkNUeEgyUmtBNXQ2Qk8wNTUxQXVueDNBZVh1ZHlqcU9qL0hGeGYyaVFTNTdsUldwVWVLV1FOCnVCTXU5Q0lhaWtrcDVOWVpuOUFyNDgwRlhvOFZVL0ZwUmxXTXhESGxMZzdKL0pEUUFZSEV5TGIxMnNPVFQ4V3YKMnpGc1RZdDE5Y3A4dXZvdGVISXZLK2hRSE5tcFAwRHJFU3pxamhKN2JaaStZdUdLcGh6ZDFoQ3M1WEhveFRKSwoxbXlENXFtbnZXTVIzaFd6N2JuVHZxVHNRUjQ0YjAyQzFkZXAwR1QwM0F1b0lUU3FnNVRYMTJpenFlbUpKT0loCkZWNS9EQT09Ci0tLS0tRU5EIENFUlRJRklDQVRFLS0tLS0K","content_type":"application/x-pem-file","name":"ssl_certificate"}' headers: Content-Length: - "1723" @@ -5487,7 +5487,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5497,10 +5497,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 39a03955-11d9-41ef-b230-86b01ba7b886 + - 141cda36-3db9-49c2-a282-5f4ac020d50f status: 200 OK code: 200 - duration: 106.7225ms + duration: 80.366333ms - id: 112 request: proto: HTTP/1.1 @@ -5517,7 +5517,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=2d737efb-a7f9-4a8d-8a5d-c2a1922b922c&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=572165b4-742f-4d6f-9809-d775a7219240&resource_type=rdb_instance + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=793dc253-54ba-4634-8693-511977de1571&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=ab898779-65a3-4dd0-ac28-2d294e0e2ec9&resource_type=rdb_instance method: GET response: proto: HTTP/2.0 @@ -5527,7 +5527,7 @@ interactions: trailer: {} content_length: 542 uncompressed: false - body: '{"ips":[{"address":"172.16.20.2/22","created_at":"2025-06-30T15:18:35.178332Z","id":"4deecdeb-334b-4bbb-a81b-44a76424f6b2","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"572165b4-742f-4d6f-9809-d775a7219240","mac_address":"02:00:00:1D:78:E5","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"33fdeff0-2ff4-405c-a825-e6585816e41b"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:18:36.392297Z","zone":null}],"total_count":1}' + body: '{"ips":[{"address":"172.16.52.3/22","created_at":"2025-06-30T15:53:00.985823Z","id":"87521aae-986f-41ca-83ae-277a27304b3d","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","mac_address":"02:00:00:14:1A:4D","name":"test-rdb-private-network-update","type":"rdb_instance"},"reverses":[],"source":{"subnet_id":"9da48d40-d974-4cdf-b0fb-1a87814c4644"},"tags":["managed","scwdbaas"],"updated_at":"2025-06-30T15:53:02.167434Z","zone":null}],"total_count":1}' headers: Content-Length: - "542" @@ -5536,7 +5536,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5546,10 +5546,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d047cf97-6040-4c23-9ad8-75e03dc74502 + - 0db0ac6f-3f87-467b-a238-c6625cbe1de9 status: 200 OK code: 200 - duration: 56.746792ms + duration: 57.03425ms - id: 113 request: proto: HTTP/1.1 @@ -5566,7 +5566,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5576,7 +5576,7 @@ interactions: trailer: {} content_length: 1312 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"ready","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1312" @@ -5585,7 +5585,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5595,10 +5595,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 71f46f18-d732-4ecb-8e83-8738918caa2b + - 998edc3b-3c93-40a3-901d-84fb86f3beb7 status: 200 OK code: 200 - duration: 127.715875ms + duration: 151.091208ms - id: 114 request: proto: HTTP/1.1 @@ -5615,7 +5615,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: DELETE response: proto: HTTP/2.0 @@ -5625,7 +5625,7 @@ interactions: trailer: {} content_length: 1315 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1315" @@ -5634,7 +5634,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:07 GMT + - Mon, 30 Jun 2025 15:53:33 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5644,10 +5644,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 601f5400-fdc8-4bbd-9f0c-a866149df486 + - 9c07ec6e-5747-42e6-914f-a288add03e34 status: 200 OK code: 200 - duration: 269.621167ms + duration: 398.314417ms - id: 115 request: proto: HTTP/1.1 @@ -5664,7 +5664,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5674,7 +5674,7 @@ interactions: trailer: {} content_length: 1315 uncompressed: false - body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:11:38.764942Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"e35d8700-1f79-40ce-9d08-40735f85d7c8","ip":"172.16.20.2","name":null,"port":5432,"private_network":{"private_network_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","provisioning_mode":"ipam","service_ip":"172.16.20.2/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"572165b4-742f-4d6f-9809-d775a7219240","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' + body: '{"backup_same_region":false,"backup_schedule":{"disabled":true,"frequency":24,"next_run_at":null,"retention":7},"created_at":"2025-06-30T15:45:37.438594Z","encryption":{"enabled":false},"endpoint":null,"endpoints":[{"id":"1f56efe1-5fc8-4200-9cb4-9ebc6059c08c","ip":"172.16.52.3","name":null,"port":5432,"private_network":{"private_network_id":"793dc253-54ba-4634-8693-511977de1571","provisioning_mode":"ipam","service_ip":"172.16.52.3/22","zone":"fr-par-1"}}],"engine":"PostgreSQL-16","id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","init_settings":[],"is_ha_cluster":false,"logs_policy":{"max_age_retention":30,"total_disk_retention":null},"maintenances":[],"name":"test-rdb-private-network-update","node_type":"db-dev-s","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","read_replicas":[],"region":"fr-par","settings":[{"name":"effective_cache_size","value":"1300"},{"name":"maintenance_work_mem","value":"150"},{"name":"max_connections","value":"100"},{"name":"max_parallel_workers","value":"0"},{"name":"max_parallel_workers_per_gather","value":"0"},{"name":"work_mem","value":"4"}],"status":"deleting","tags":["terraform-test","scaleway_rdb_instance","volume","rdb_pn"],"upgradable_version":[],"volume":{"class":"sbs","size":10000000000,"type":"sbs_5k"}}' headers: Content-Length: - "1315" @@ -5683,7 +5683,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:08 GMT + - Mon, 30 Jun 2025 15:53:34 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5693,10 +5693,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 87616626-ca45-45a1-9d8e-d0ac87568196 + - 39249b29-9e22-4fcd-ba3a-da8f2742ecf6 status: 200 OK code: 200 - duration: 154.149667ms + duration: 117.910416ms - id: 116 request: proto: HTTP/1.1 @@ -5713,7 +5713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5723,7 +5723,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"572165b4-742f-4d6f-9809-d775a7219240","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","type":"not_found"}' headers: Content-Length: - "129" @@ -5732,7 +5732,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:38 GMT + - Mon, 30 Jun 2025 15:54:04 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5742,10 +5742,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20d350e6-9928-4282-87e7-d08ee2e25e57 + - db1529f1-7181-4901-9523-7d5d84404db4 status: 404 Not Found code: 404 - duration: 98.593791ms + duration: 70.729125ms - id: 117 request: proto: HTTP/1.1 @@ -5762,7 +5762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: DELETE response: proto: HTTP/2.0 @@ -5779,7 +5779,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:41 GMT + - Mon, 30 Jun 2025 15:54:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5789,10 +5789,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 01580839-7c1d-4bec-aae6-22d445fd1e10 + - f8b47209-5e69-4073-b08a-59cbf4f70e9e status: 204 No Content code: 204 - duration: 3.290910708s + duration: 2.249822333s - id: 118 request: proto: HTTP/1.1 @@ -5809,7 +5809,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/572165b4-742f-4d6f-9809-d775a7219240 + url: https://api.scaleway.com/rdb/v1/regions/fr-par/instances/ab898779-65a3-4dd0-ac28-2d294e0e2ec9 method: GET response: proto: HTTP/2.0 @@ -5819,7 +5819,7 @@ interactions: trailer: {} content_length: 129 uncompressed: false - body: '{"message":"resource is not found","resource":"instance","resource_id":"572165b4-742f-4d6f-9809-d775a7219240","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance","resource_id":"ab898779-65a3-4dd0-ac28-2d294e0e2ec9","type":"not_found"}' headers: Content-Length: - "129" @@ -5828,7 +5828,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:41 GMT + - Mon, 30 Jun 2025 15:54:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5838,10 +5838,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e576ae2a-9f77-40a0-bdee-d7886060c426 + - 38a505cb-2a93-4b19-ad92-51f9b183f9e1 status: 404 Not Found code: 404 - duration: 74.817333ms + duration: 79.457209ms - id: 119 request: proto: HTTP/1.1 @@ -5858,7 +5858,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/2d737efb-a7f9-4a8d-8a5d-c2a1922b922c + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/793dc253-54ba-4634-8693-511977de1571 method: GET response: proto: HTTP/2.0 @@ -5868,7 +5868,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"2d737efb-a7f9-4a8d-8a5d-c2a1922b922c","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"793dc253-54ba-4634-8693-511977de1571","type":"not_found"}' headers: Content-Length: - "136" @@ -5877,7 +5877,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:41 GMT + - Mon, 30 Jun 2025 15:54:06 GMT Server: - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: @@ -5887,7 +5887,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 968079af-e609-4031-911b-93ac9559d5bb + - 212d11ae-b3be-4f8f-a3cf-00719bda8612 status: 404 Not Found code: 404 - duration: 24.486083ms + duration: 24.684583ms diff --git a/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml b/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml index d6ab450567..5ddd87e3db 100644 --- a/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-disable-routing.cassette.yaml @@ -2,57 +2,6 @@ version: 2 interactions: - id: 0 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 120 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"test-vpc-disable-routing","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 28 - uncompressed: false - body: '{"message":"internal error"}' - headers: - Content-Length: - - "28" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:18:58 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - e5679b93-6caf-44fc-b9a9-6a1bb918333d - status: 500 Internal Server Error - code: 500 - duration: 1.813122s - - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -80,7 +29,7 @@ interactions: trailer: {} content_length: 412 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":false,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.799709Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":false,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.095647Z"}' headers: Content-Length: - "412" @@ -89,7 +38,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -99,11 +48,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e4200d5e-3359-48bc-8cf3-affe42369ee5 + - ab50cdbb-00ee-4ce2-9e1a-c92af3cadddd status: 200 OK code: 200 - duration: 71.130208ms - - id: 2 + duration: 558.518333ms + - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -121,7 +70,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3/enable-custom-routes-propagation + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -131,7 +80,7 @@ interactions: trailer: {} content_length: 411 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":true,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.192886Z"}' headers: Content-Length: - "411" @@ -140,7 +89,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -150,11 +99,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 54ee7bca-b033-4f69-8488-4d99db937d06 + - 144338f4-551c-4352-9e93-de49fb65f30a status: 200 OK code: 200 - duration: 46.259333ms - - id: 3 + duration: 49.180125ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -170,7 +119,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: GET response: proto: HTTP/2.0 @@ -180,7 +129,7 @@ interactions: trailer: {} content_length: 411 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":true,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.192886Z"}' headers: Content-Length: - "411" @@ -189,7 +138,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -199,11 +148,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 593f34d5-0a2f-4cda-ab58-36de782cb7f6 + - 7c1616a4-dd28-4024-8296-42671f2a8c1f status: 200 OK code: 200 - duration: 30.720083ms - - id: 4 + duration: 30.83475ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -219,7 +168,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: GET response: proto: HTTP/2.0 @@ -229,7 +178,7 @@ interactions: trailer: {} content_length: 411 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":true,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.192886Z"}' headers: Content-Length: - "411" @@ -238,7 +187,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -248,11 +197,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 228ce444-7d3f-4279-8eb7-3cf635a22971 + - c6b02fb5-f2ce-410c-8bcc-de0a96b2c80e status: 200 OK code: 200 - duration: 25.925833ms - - id: 5 + duration: 50.198166ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -268,7 +217,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: GET response: proto: HTTP/2.0 @@ -278,7 +227,7 @@ interactions: trailer: {} content_length: 411 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":true,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.192886Z"}' headers: Content-Length: - "411" @@ -287,7 +236,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:01 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -297,11 +246,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ec7d2d31-a9d4-4205-b29a-eae136e991cc + - 47499d58-dd34-4da2-8d65-2066eb5d80d0 status: 200 OK code: 200 - duration: 27.507625ms - - id: 6 + duration: 43.928625ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -317,7 +266,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: GET response: proto: HTTP/2.0 @@ -327,7 +276,7 @@ interactions: trailer: {} content_length: 411 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:00.799709Z","custom_routes_propagation_enabled":true,"id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:19:00.854660Z"}' + body: '{"created_at":"2025-06-30T15:43:51.095647Z","custom_routes_propagation_enabled":true,"id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","is_default":false,"name":"test-vpc-disable-routing","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-06-30T15:43:51.192886Z"}' headers: Content-Length: - "411" @@ -336,7 +285,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:01 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -346,11 +295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e43bea84-2edf-4bdb-a05f-1aa6011ec0d4 + - 4aabb78b-1c9c-48a0-83c3-87057f6d51d6 status: 200 OK code: 200 - duration: 35.079458ms - - id: 7 + duration: 29.593666ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -366,7 +315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: DELETE response: proto: HTTP/2.0 @@ -383,7 +332,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:01 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -393,11 +342,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d7aea771-3cf8-47d0-a0c2-fa8ad7e0433d + - c117399a-4073-4fda-90fc-06fba118060e status: 204 No Content code: 204 - duration: 72.577709ms - - id: 8 + duration: 96.033458ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -413,7 +362,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/7f6c25af-cb8b-4558-912e-3dbfdaf01e0d method: GET response: proto: HTTP/2.0 @@ -423,7 +372,7 @@ interactions: trailer: {} content_length: 124 uncompressed: false - body: '{"message":"resource is not found","resource":"vpc","resource_id":"4bc77aa8-b4ed-4a7e-aab5-a87781f89fb3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"vpc","resource_id":"7f6c25af-cb8b-4558-912e-3dbfdaf01e0d","type":"not_found"}' headers: Content-Length: - "124" @@ -432,7 +381,7 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:01 GMT + - Mon, 30 Jun 2025 15:43:51 GMT Server: - Scaleway API Gateway (fr-par-2;edge03) Strict-Transport-Security: @@ -442,7 +391,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 00437e37-e4e7-4454-b4c8-dbfb91058e08 + - 2965cb81-8764-4c2e-86da-f0ea47f929be status: 404 Not Found code: 404 - duration: 27.466541ms + duration: 22.161542ms diff --git a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml index 080903b114..5cd9da4610 100644 --- a/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-private-network-basic.cassette.yaml @@ -27,20 +27,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 1065 uncompressed: false - body: '{"message":"internal error"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "28" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT + - Mon, 30 Jun 2025 15:49:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,62 +48,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 25d72a0a-9376-4e27-bbee-bf23e9786ea0 - status: 500 Internal Server Error - code: 500 - duration: 576.247625ms - - id: 1 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 150 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{"name":"private-network-test","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":null,"default_route_propagation_enabled":false}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 1066 - uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' - headers: - Content-Length: - - "1066" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:19:00 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - b586c2e6-5b3f-4e87-8356-80aaf82b793e + - 73159991-2553-456c-8fd9-54d761b0060d status: 200 OK code: 200 - duration: 628.509584ms - - id: 2 + duration: 1.199803084s + - id: 1 request: proto: HTTP/1.1 proto_major: 1 @@ -119,7 +68,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -127,20 +76,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1066" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -148,11 +97,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecced155-e120-4e7c-b72e-ecafb72518ad + - 7eddc634-0d45-41cc-878f-7eb65ea566c3 status: 200 OK code: 200 - duration: 31.767ms - - id: 3 + duration: 38.833375ms + - id: 2 request: proto: HTTP/1.1 proto_major: 1 @@ -168,7 +117,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -176,20 +125,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1066" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -197,11 +146,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 95bd5ea2-cbf6-463e-962f-1c64f4ff8d80 + - 5e59f8e6-9702-4e09-aebc-66242bc0f81b status: 200 OK code: 200 - duration: 32.196333ms - - id: 4 + duration: 33.073667ms + - id: 3 request: proto: HTTP/1.1 proto_major: 1 @@ -217,7 +166,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -225,20 +174,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1066" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -246,11 +195,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7128f2ad-daec-4dad-a6d5-92f377cd5774 + - 50629afa-1915-420a-98a4-da266ca650da status: 200 OK code: 200 - duration: 29.690667ms - - id: 5 + duration: 46.965333ms + - id: 4 request: proto: HTTP/1.1 proto_major: 1 @@ -266,7 +215,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -274,20 +223,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1066 + content_length: 1065 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":[],"updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1066" + - "1065" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -295,11 +244,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ce82d00c-8798-45cb-81c7-e8eb30b97eef + - c14eb345-f4e9-4b7d-8597-c60868552143 status: 200 OK code: 200 - duration: 25.650667ms - - id: 6 + duration: 27.369125ms + - id: 5 request: proto: HTTP/1.1 proto_major: 1 @@ -317,7 +266,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: PATCH response: proto: HTTP/2.0 @@ -325,20 +274,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1077 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:49:44.572043Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1078" + - "1077" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -346,11 +295,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11064239-63ae-410d-8b16-6261d712534a + - 914d4433-bfeb-4f96-be21-94e1d946e86f status: 200 OK code: 200 - duration: 41.299083ms - - id: 7 + duration: 35.468083ms + - id: 6 request: proto: HTTP/1.1 proto_major: 1 @@ -366,7 +315,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -374,20 +323,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1077 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:49:44.572043Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1078" + - "1077" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -395,11 +344,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f1a21cf7-a3a8-40c5-8a52-e444a0a204b6 + - 463e83f3-523c-4155-9082-81d5a0a891bb status: 200 OK code: 200 - duration: 36.886292ms - - id: 8 + duration: 24.5195ms + - id: 7 request: proto: HTTP/1.1 proto_major: 1 @@ -415,7 +364,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -423,20 +372,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1077 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:49:44.572043Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1078" + - "1077" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -444,11 +393,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7cfc3a89-9223-464f-9c4e-39b8b7218581 + - 3ba3e281-c621-40fc-a6b0-15b9e2393b7a status: 200 OK code: 200 - duration: 26.493417ms - - id: 9 + duration: 28.976541ms + - id: 8 request: proto: HTTP/1.1 proto_major: 1 @@ -464,7 +413,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -472,20 +421,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1078 + content_length: 1077 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.582264Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"a9e3614b-9636-4b63-a49d-e5466409ff48","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.582264Z","id":"08566225-1485-47b5-aa5c-681cb14edcc7","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.88.0/22","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:18:59.582264Z","id":"63aee212-0200-49e9-9e83-9d91cfe2dc56","private_network_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:42bb::/64","updated_at":"2025-06-30T15:18:59.582264Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:19:00.866627Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' + body: '{"created_at":"2025-06-30T15:49:43.059765Z","default_route_propagation_enabled":true,"dhcp_enabled":true,"id":"76b221f2-9e17-490b-9821-17ae5a48741e","name":"private-network-test","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:49:43.059765Z","id":"c76ad0e6-8487-49a6-a95f-eebbf4732c69","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.92.0/22","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"},{"created_at":"2025-06-30T15:49:43.059765Z","id":"31abebc9-4bac-45ac-9192-feadd7d67006","private_network_id":"76b221f2-9e17-490b-9821-17ae5a48741e","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:2f5::/64","updated_at":"2025-06-30T15:49:43.059765Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}],"tags":["tag0","tag1"],"updated_at":"2025-06-30T15:49:44.572043Z","vpc_id":"086a5171-f7ab-4667-a231-840a81203f19"}' headers: Content-Length: - - "1078" + - "1077" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:01 GMT + - Mon, 30 Jun 2025 15:49:44 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -493,11 +442,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1dd916ae-cdf1-48c8-9a4c-4e9a72379a97 + - efcd3587-718b-4447-8011-acd0fcc35df7 status: 200 OK code: 200 - duration: 27.185792ms - - id: 10 + duration: 49.155875ms + - id: 9 request: proto: HTTP/1.1 proto_major: 1 @@ -513,7 +462,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: DELETE response: proto: HTTP/2.0 @@ -530,9 +479,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:05 GMT + - Mon, 30 Jun 2025 15:49:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -540,11 +489,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 58b3a80a-a070-4ed8-a36a-49c9d750ebaa + - 658d806c-11ee-42df-abdd-2f241499486a status: 204 No Content code: 204 - duration: 3.84988075s - - id: 11 + duration: 2.186862709s + - id: 10 request: proto: HTTP/1.1 proto_major: 1 @@ -560,7 +509,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/a9e3614b-9636-4b63-a49d-e5466409ff48 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/76b221f2-9e17-490b-9821-17ae5a48741e method: GET response: proto: HTTP/2.0 @@ -570,7 +519,7 @@ interactions: trailer: {} content_length: 136 uncompressed: false - body: '{"message":"resource is not found","resource":"private_network","resource_id":"a9e3614b-9636-4b63-a49d-e5466409ff48","type":"not_found"}' + body: '{"message":"resource is not found","resource":"private_network","resource_id":"76b221f2-9e17-490b-9821-17ae5a48741e","type":"not_found"}' headers: Content-Length: - "136" @@ -579,9 +528,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:05 GMT + - Mon, 30 Jun 2025 15:49:47 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge02) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -589,7 +538,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c4bd7259-f6a5-4f6a-8af7-6a7ae64ad8e0 + - f841c57d-440e-4cb5-843d-a0d1e70a8933 status: 404 Not Found code: 404 - duration: 44.429667ms + duration: 23.190291ms diff --git a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml index de65147c6e..e819433e43 100644 --- a/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml +++ b/internal/services/vpc/testdata/vpc-route-basic.cassette.yaml @@ -36,11 +36,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT + - Mon, 30 Jun 2025 15:46:15 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -48,52 +48,52 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9939af-c46d-4e8c-bdbc-5ad17e12b1c9 + - 9f9f8f75-0507-42b3-af40-1b50555c4b0f X-Total-Count: - "75" status: 200 OK code: 200 - duration: 234.881167ms + duration: 391.058292ms - id: 1 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 106 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-vpc-vpn","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.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 19730 + content_length: 398 uncompressed: false - body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":false,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.429130Z"}' headers: Content-Length: - - "19730" + - "398" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT - Link: - - ; rel="first",; rel="previous",; rel="last" + - Mon, 30 Jun 2025 15:46:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -101,31 +101,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 740f4876-1e1e-4ad6-90b4-d8ac88e53da4 - X-Total-Count: - - "75" + - b36547ad-761c-4205-9817-c2e05530840b status: 200 OK code: 200 - duration: 50.700083ms + duration: 415.735625ms - id: 2 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 2 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: '{}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5/enable-custom-routes-propagation method: POST response: proto: HTTP/2.0 @@ -133,20 +131,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 397 uncompressed: false - body: '{"message":"internal error"}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.487392Z"}' headers: Content-Length: - - "28" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT + - Mon, 30 Jun 2025 15:46:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -154,10 +152,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2aab304e-09ad-41e9-9a96-4291ba94329f - status: 500 Internal Server Error - code: 500 - duration: 349.199834ms + - 62718db1-b6ff-4862-bd17-4966729be050 + status: 200 OK + code: 200 + duration: 42.953625ms - id: 3 request: proto: HTTP/1.1 @@ -174,7 +172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/products/servers?page=2 method: GET response: proto: HTTP/2.0 @@ -182,20 +180,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 937 + content_length: 19730 uncompressed: false - body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' + body: '{"servers":{"POP2-HM-48C-384G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":12,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":2.47,"mig_profile":null,"monthly_price":1778.4,"ncpus":48,"network":{"interfaces":[{"internal_bandwidth":9600000000,"internet_bandwidth":9600000000}],"ipv6_support":true,"sum_internal_bandwidth":9600000000,"sum_internet_bandwidth":9600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":412316860416,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-4C-32G":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.206,"mig_profile":null,"monthly_price":150.38,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":800000000,"internet_bandwidth":800000000}],"ipv6_support":true,"sum_internal_bandwidth":800000000,"sum_internet_bandwidth":800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-64C-512G":{"alt_names":[],"arch":"x86_64","block_bandwidth":5905580032,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":16,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":3.296,"mig_profile":null,"monthly_price":2406.08,"ncpus":64,"network":{"interfaces":[{"internal_bandwidth":12800000000,"internet_bandwidth":12800000000}],"ipv6_support":true,"sum_internal_bandwidth":12800000000,"sum_internet_bandwidth":12800000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":549755813888,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HM-8C-64G":{"alt_names":[],"arch":"x86_64","block_bandwidth":1677721600,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":2,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.412,"mig_profile":null,"monthly_price":300.76,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1600000000,"internet_bandwidth":1600000000}],"ipv6_support":true,"sum_internal_bandwidth":1600000000,"sum_internet_bandwidth":1600000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-10":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.7264,"mig_profile":null,"monthly_price":530.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":10000000000,"internet_bandwidth":10000000000}],"ipv6_support":true,"sum_internal_bandwidth":10000000000,"sum_internet_bandwidth":10000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-3":{"alt_names":[],"arch":"x86_64","block_bandwidth":419430400,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.2554,"mig_profile":null,"monthly_price":186.49,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"POP2-HN-5":{"alt_names":[],"arch":"x86_64","block_bandwidth":838860800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":1,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.4524,"mig_profile":null,"monthly_price":330.29,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":5000000000,"internet_bandwidth":5000000000}],"ipv6_support":true,"sum_internal_bandwidth":5000000000,"sum_internet_bandwidth":5000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":2097152000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.877,"mig_profile":null,"monthly_price":640.21,"ncpus":32,"network":{"interfaces":[{"internal_bandwidth":6000000000,"internet_bandwidth":6000000000}],"ipv6_support":true,"sum_internal_bandwidth":6000000000,"sum_internet_bandwidth":6000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":137438953472,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":1048576000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.438,"mig_profile":null,"monthly_price":319.74,"ncpus":16,"network":{"interfaces":[{"internal_bandwidth":3000000000,"internet_bandwidth":3000000000}],"ipv6_support":true,"sum_internal_bandwidth":3000000000,"sum_internet_bandwidth":3000000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":68719476736,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":524288000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.219,"mig_profile":null,"monthly_price":159.87,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":1500000000,"internet_bandwidth":1500000000}],"ipv6_support":true,"sum_internal_bandwidth":1500000000,"sum_internet_bandwidth":1500000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":34359738368,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":262144000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.11,"mig_profile":null,"monthly_price":80.3,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":700000000,"internet_bandwidth":700000000}],"ipv6_support":true,"sum_internal_bandwidth":700000000,"sum_internet_bandwidth":700000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":17179869184,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"PRO2-XXS":{"alt_names":[],"arch":"x86_64","block_bandwidth":131072000,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":false,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.055,"mig_profile":null,"monthly_price":40.15,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":350000000,"internet_bandwidth":350000000}],"ipv6_support":true,"sum_internal_bandwidth":350000000,"sum_internet_bandwidth":350000000},"per_volume_constraint":{"l_ssd":{"max_size":0,"min_size":0}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":0,"min_size":0}},"RENDER-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":2147483648,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":1,"gpu_info":{"gpu_manufacturer":"NVIDIA","gpu_memory":17179869184,"gpu_name":"P100"},"hourly_price":1.2426,"mig_profile":null,"monthly_price":907.098,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":2000000000,"internet_bandwidth":2000000000}],"ipv6_support":true,"sum_internal_bandwidth":2000000000,"sum_internet_bandwidth":2000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":45097156608,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"STARDUST1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":52428800,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":false,"gpu":0,"gpu_info":null,"hourly_price":0.00459,"mig_profile":null,"monthly_price":3.3507,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":10000000000,"min_size":0}},"START1-L":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0368,"mig_profile":null,"monthly_price":26.864,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":400000000,"internet_bandwidth":400000000}],"ipv6_support":true,"sum_internal_bandwidth":400000000,"sum_internet_bandwidth":400000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"START1-M":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0194,"mig_profile":null,"monthly_price":14.162,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":300000000,"internet_bandwidth":300000000}],"ipv6_support":true,"sum_internal_bandwidth":300000000,"sum_internet_bandwidth":300000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"START1-S":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0106,"mig_profile":null,"monthly_price":7.738,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"START1-XS":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.0062,"mig_profile":null,"monthly_price":4.526,"ncpus":1,"network":{"interfaces":[{"internal_bandwidth":100000000,"internet_bandwidth":100000000}],"ipv6_support":true,"sum_internal_bandwidth":100000000,"sum_internet_bandwidth":100000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":1073741824,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":25000000000,"min_size":0}},"VC1L":{"alt_names":["X64-8GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.02468,"mig_profile":null,"monthly_price":18.0164,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":8589934592,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"VC1M":{"alt_names":["X64-4GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.01555,"mig_profile":null,"monthly_price":11.3515,"ncpus":4,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":4294967296,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":100000000000,"min_size":0}},"VC1S":{"alt_names":["X64-2GB"],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.00862,"mig_profile":null,"monthly_price":6.2926,"ncpus":2,"network":{"interfaces":[{"internal_bandwidth":200000000,"internet_bandwidth":200000000}],"ipv6_support":true,"sum_internal_bandwidth":200000000,"sum_internet_bandwidth":200000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":2147483648,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":50000000000,"min_size":0}},"X64-120GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.42574,"mig_profile":null,"monthly_price":310.7902,"ncpus":12,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":128849018880,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":800000000000,"min_size":0}},"X64-15GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.06032,"mig_profile":null,"monthly_price":44.0336,"ncpus":6,"network":{"interfaces":[{"internal_bandwidth":250000000,"internet_bandwidth":250000000}],"ipv6_support":true,"sum_internal_bandwidth":250000000,"sum_internet_bandwidth":250000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":16106127360,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":200000000000,"min_size":0}},"X64-30GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.11906,"mig_profile":null,"monthly_price":86.9138,"ncpus":8,"network":{"interfaces":[{"internal_bandwidth":500000000,"internet_bandwidth":500000000}],"ipv6_support":true,"sum_internal_bandwidth":500000000,"sum_internet_bandwidth":500000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":32212254720,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":400000000000,"min_size":0}},"X64-60GB":{"alt_names":[],"arch":"x86_64","block_bandwidth":41943040,"capabilities":{"block_storage":true,"boot_types":["local","rescue"],"hot_snapshots_local_volume":true,"max_file_systems":0,"placement_groups":true,"private_network":8},"end_of_service":true,"gpu":0,"gpu_info":null,"hourly_price":0.213,"mig_profile":null,"monthly_price":155.49,"ncpus":10,"network":{"interfaces":[{"internal_bandwidth":1000000000,"internet_bandwidth":1000000000}],"ipv6_support":true,"sum_internal_bandwidth":1000000000,"sum_internet_bandwidth":1000000000},"per_volume_constraint":{"l_ssd":{"max_size":800000000000,"min_size":1000000000}},"ram":64424509440,"scratch_storage_max_size":null,"volumes_constraint":{"max_size":700000000000,"min_size":0}}}}' headers: Content-Length: - - "937" + - "19730" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT + - Mon, 30 Jun 2025 15:46:15 GMT + Link: + - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -203,52 +203,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d163ea9-dc63-451d-bf52-a416601466bb + - 54fa1672-523c-4c65-b460-cc4f1392f4f9 + X-Total-Count: + - "75" status: 200 OK code: 200 - duration: 85.572875ms + duration: 54.632917ms - id: 4 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 231 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers - method: POST + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 397 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.487392Z"}' headers: Content-Length: - - "1688" + - "397" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:57 GMT - Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + - Mon, 30 Jun 2025 15:46:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -256,10 +254,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb41821b-0db9-482b-bcf4-3baf9ce9321f - status: 201 Created - code: 201 - duration: 622.96575ms + - 5e01fcf3-bc8e-4d6f-9b6f-172c2dba6a69 + status: 200 OK + code: 200 + duration: 35.232375ms - id: 5 request: proto: HTTP/1.1 @@ -276,7 +274,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/marketplace/v2/local-images?image_label=openvpn&order_by=type_asc&type=instance_sbs&zone=fr-par-1 method: GET response: proto: HTTP/2.0 @@ -284,20 +282,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 937 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"local_images":[{"arch":"x86_64","compatible_commercial_types":["DEV1-L","DEV1-M","DEV1-S","DEV1-XL","GP1-L","GP1-M","GP1-S","GP1-XL","GP1-XS","START1-L","START1-M","START1-S","START1-XS","VC1L","VC1M","VC1S","X64-120GB","X64-15GB","X64-30GB","X64-60GB","ENT1-XXS","ENT1-XS","ENT1-S","ENT1-M","ENT1-L","ENT1-XL","ENT1-2XL","PRO2-XXS","PRO2-XS","PRO2-S","PRO2-M","PRO2-L","PLAY2-MICRO","PLAY2-NANO","PLAY2-PICO","STARDUST1-S","POP2-2C-8G","POP2-4C-16G","POP2-8C-32G","POP2-16C-64G","POP2-32C-128G","POP2-64C-256G","POP2-HM-2C-16G","POP2-HM-4C-32G","POP2-HM-8C-64G","POP2-HM-16C-128G","POP2-HM-32C-256G","POP2-HM-64C-512G","POP2-HC-2C-4G","POP2-HC-4C-8G","POP2-HC-8C-16G","POP2-HC-16C-32G","POP2-HC-32C-64G","POP2-HC-64C-128G","POP2-HN-3","POP2-HN-5","POP2-HN-10","POP2-48C-192G","POP2-HC-48C-96G","POP2-HM-48C-384G"],"id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","label":"openvpn","type":"instance_sbs","zone":"fr-par-1"}],"total_count":1}' headers: Content-Length: - - "1688" + - "937" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:58 GMT + - Mon, 30 Jun 2025 15:46:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -305,48 +303,50 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3da17e99-281d-44c9-a040-16a4bcf5d47b + - 7d6e6efc-7920-4c4b-a9cf-fbf43f79a261 status: 200 OK code: 200 - duration: 129.031542ms + duration: 94.167666ms - id: 6 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 0 + content_length: 201 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: "" + body: '{"name":"tf-pn-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","default_route_propagation_enabled":false}' form: {} headers: + Content-Type: + - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + method: POST response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1688 + content_length: 1055 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:57.535465+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - - "1688" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:58 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -354,10 +354,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 51a390b0-4c29-4580-b142-9258653b3612 + - 5c255153-0053-4025-bebb-dda70237d73c status: 200 OK code: 200 - duration: 122.419208ms + duration: 600.324041ms - id: 7 request: proto: HTTP/1.1 @@ -374,7 +374,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 method: GET response: proto: HTTP/2.0 @@ -382,20 +382,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 665 + content_length: 1055 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - - "665" + - "1055" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:58 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -403,29 +403,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - eeb863c0-9279-42e0-a867-8671137e6209 + - e0cbfb02-263c-4d94-a2dd-ae3cf2093f1e status: 200 OK code: 200 - duration: 47.43025ms + duration: 24.555917ms - id: 8 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 20 + content_length: 231 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"action":"poweron"}' + body: '{"name":"tf-server-vpn","dynamic_ip_required":false,"commercial_type":"PLAY2-MICRO","image":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","volumes":{"0":{"boot":false}},"boot_type":"local","project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers method: POST response: proto: HTTP/2.0 @@ -433,22 +433,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 357 + content_length: 1688 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action","href_result":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3","id":"7a42db30-b4e8-4b65-bcf8-8380e7254baa","progress":0,"started_at":"2025-06-30T15:18:58.500768+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "357" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:58 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/7a42db30-b4e8-4b65-bcf8-8380e7254baa + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -456,10 +456,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 489ade42-bf56-4dbe-9488-2162c87dfb8a - status: 202 Accepted - code: 202 - duration: 229.297709ms + - 5c650e5c-90f8-4906-9be9-a4670c02c369 + status: 201 Created + code: 201 + duration: 913.053ms - id: 9 request: proto: HTTP/1.1 @@ -476,7 +476,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -484,20 +484,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1710 + content_length: 1688 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:18:58.317583+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1710" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:58 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -505,50 +505,48 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65be5446-d909-4f5e-9f31-32e1f8491f22 + - bfb60e05-e139-400f-a042-021ee8c343a1 status: 200 OK code: 200 - duration: 238.756959ms + duration: 142.348667ms - id: 10 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 106 + content_length: 0 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-vpc-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"enable_routing":false}' + body: "" form: {} headers: - Content-Type: - - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs - method: POST + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 398 + content_length: 1688 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":false,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.382485Z"}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:15.773412+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "398" + - "1688" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:59 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -556,62 +554,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - edf792e4-f768-4730-b387-e28dd8413240 + - 957f43c9-0903-4d92-8ef5-f5043e4ebc91 status: 200 OK code: 200 - duration: 57.640709ms + duration: 176.926334ms - id: 11 - request: - proto: HTTP/1.1 - proto_major: 1 - proto_minor: 1 - content_length: 2 - transfer_encoding: [] - trailer: {} - host: api.scaleway.com - remote_addr: "" - request_uri: "" - body: '{}' - form: {} - headers: - Content-Type: - - application/json - User-Agent: - - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44/enable-custom-routes-propagation - method: POST - response: - proto: HTTP/2.0 - proto_major: 2 - proto_minor: 0 - transfer_encoding: [] - trailer: {} - content_length: 397 - uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' - headers: - Content-Length: - - "397" - Content-Security-Policy: - - default-src 'none'; frame-ancestors 'none' - Content-Type: - - application/json - Date: - - Mon, 30 Jun 2025 15:18:59 GMT - Server: - - Scaleway API Gateway (fr-par-2;edge03) - Strict-Transport-Security: - - max-age=63072000 - X-Content-Type-Options: - - nosniff - X-Frame-Options: - - DENY - X-Request-Id: - - 5e54dffd-3309-4844-8a6c-14e0492671b0 - status: 200 OK - code: 200 - duration: 50.05575ms - - id: 12 request: proto: HTTP/1.1 proto_major: 1 @@ -627,7 +574,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -635,20 +582,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 397 + content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - - "397" + - "665" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:18:59 GMT + - Mon, 30 Jun 2025 15:46:16 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -656,29 +603,29 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a959f69f-79b7-4278-a194-d5bf3bf13eb8 + - 881a0181-673d-45fa-8cca-a0069ad91225 status: 200 OK code: 200 - duration: 25.772333ms - - id: 13 + duration: 50.88325ms + - id: 12 request: proto: HTTP/1.1 proto_major: 1 proto_minor: 1 - content_length: 201 + content_length: 20 transfer_encoding: [] trailer: {} host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"name":"tf-pn-vpn","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","tags":[],"subnets":["172.16.64.0/22"],"vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44","default_route_propagation_enabled":false}' + body: '{"action":"poweron"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action method: POST response: proto: HTTP/2.0 @@ -686,20 +633,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 357 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action","href_result":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","id":"e0930aac-5d47-4297-82b6-2b16fb7a2715","progress":0,"started_at":"2025-06-30T15:46:17.083123+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - - "1055" + - "357" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:46:17 GMT + Location: + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/e0930aac-5d47-4297-82b6-2b16fb7a2715 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -707,11 +656,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1df8aba0-d624-4494-99f9-c343ed7b559e - status: 200 OK - code: 200 - duration: 552.638125ms - - id: 14 + - e1a8fbf7-1cc4-4913-bb13-8c1e5da678e5 + status: 202 Accepted + code: 202 + duration: 236.6155ms + - id: 13 request: proto: HTTP/1.1 proto_major: 1 @@ -727,7 +676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -735,20 +684,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1055 + content_length: 1710 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:16.923677+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1055" + - "1710" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:00 GMT + - Mon, 30 Jun 2025 15:46:17 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -756,11 +705,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 412ebaf9-1208-4663-91de-6dd700d0f5e9 + - 0ac0c337-a84e-4dde-8078-82b893df696b status: 200 OK code: 200 - duration: 29.028584ms - - id: 15 + duration: 860.952958ms + - id: 14 request: proto: HTTP/1.1 proto_major: 1 @@ -776,7 +725,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -786,7 +735,7 @@ interactions: trailer: {} content_length: 1844 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1844" @@ -795,9 +744,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:03 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -805,11 +754,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 89232fb6-9c1b-4a47-9195-2cab160e81f8 + - 43c7043e-140c-4db2-8f88-52e8fbc18ff0 status: 200 OK code: 200 - duration: 157.45125ms - - id: 16 + duration: 140.769708ms + - id: 15 request: proto: HTTP/1.1 proto_major: 1 @@ -825,7 +774,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -835,7 +784,7 @@ interactions: trailer: {} content_length: 1844 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1844" @@ -844,9 +793,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -854,11 +803,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d6acdf2-1b99-46eb-b113-959c554741db + - a976578a-6457-4d3c-916a-bef9f1289f77 status: 200 OK code: 200 - duration: 255.546708ms - - id: 17 + duration: 150.291792ms + - id: 16 request: proto: HTTP/1.1 proto_major: 1 @@ -874,7 +823,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -884,7 +833,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' headers: Content-Length: - "143" @@ -893,9 +842,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -903,11 +852,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9ab54c76-6127-4075-ab13-c6509049157b + - ba59e6e8-8b9e-4b3d-986d-8eb1889f18c2 status: 404 Not Found code: 404 - duration: 31.043959ms - - id: 18 + duration: 35.091208ms + - id: 17 request: proto: HTTP/1.1 proto_major: 1 @@ -923,7 +872,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -933,7 +882,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -942,9 +891,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -952,11 +901,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4f573a22-9156-4a38-a9f3-c4c700e9b716 + - 80291019-7c2c-417e-bce7-c09a22d01d3a status: 200 OK code: 200 - duration: 51.507916ms - - id: 19 + duration: 59.29375ms + - id: 18 request: proto: HTTP/1.1 proto_major: 1 @@ -972,7 +921,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data method: GET response: proto: HTTP/2.0 @@ -991,9 +940,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1001,11 +950,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4eb09d14-6da0-4b9e-b708-fbfae5e7ed79 + - e564aae6-476e-4df4-a233-0700b8bc1430 status: 200 OK code: 200 - duration: 69.125833ms - - id: 20 + duration: 53.529208ms + - id: 19 request: proto: HTTP/1.1 proto_major: 1 @@ -1021,7 +970,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics method: GET response: proto: HTTP/2.0 @@ -1040,11 +989,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1052,13 +1001,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2917e599-8947-40fb-bcdb-e6d1dd86c773 + - 25801f25-97b6-4b6a-bfcb-a6c2a621f5b6 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 58.289959ms - - id: 21 + duration: 79.475375ms + - id: 20 request: proto: HTTP/1.1 proto_major: 1 @@ -1074,7 +1023,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -1084,7 +1033,7 @@ interactions: trailer: {} content_length: 1844 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1844" @@ -1093,9 +1042,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:04 GMT + - Mon, 30 Jun 2025 15:46:23 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1103,11 +1052,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0a916362-fdb6-4cb8-a875-4e3c2159333a + - ccc49ed2-7689-4b59-9c7c-b4156fc67369 status: 200 OK code: 200 - duration: 141.740417ms - - id: 22 + duration: 155.698875ms + - id: 21 request: proto: HTTP/1.1 proto_major: 1 @@ -1118,14 +1067,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd"}' + body: '{"private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics method: POST response: proto: HTTP/2.0 @@ -1135,7 +1084,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1144,9 +1093,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:09 GMT + - Mon, 30 Jun 2025 15:46:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1154,11 +1103,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 721d9925-7e2d-495d-9c78-d442be5caf3a + - e50d62ce-d8c1-407e-8e3b-6440cd99a464 status: 201 Created code: 201 - duration: 4.604521708s - - id: 23 + duration: 4.872704166s + - id: 22 request: proto: HTTP/1.1 proto_major: 1 @@ -1174,7 +1123,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1184,7 +1133,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1193,9 +1142,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:09 GMT + - Mon, 30 Jun 2025 15:46:28 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1203,11 +1152,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8f7538d4-3efd-45e4-b611-78e041e4c497 + - 27acb1fb-a7d8-446b-837a-bbe2879d07bf status: 200 OK code: 200 - duration: 61.787583ms - - id: 24 + duration: 64.857584ms + - id: 23 request: proto: HTTP/1.1 proto_major: 1 @@ -1223,7 +1172,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1233,7 +1182,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1242,9 +1191,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:14 GMT + - Mon, 30 Jun 2025 15:46:33 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1252,11 +1201,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b06de572-eea2-4880-80f3-fca863737ca5 + - da38054c-6047-42f3-b9fa-6e39163bf10a status: 200 OK code: 200 - duration: 69.613958ms - - id: 25 + duration: 71.5785ms + - id: 24 request: proto: HTTP/1.1 proto_major: 1 @@ -1272,7 +1221,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1282,7 +1231,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1291,9 +1240,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:19 GMT + - Mon, 30 Jun 2025 15:46:38 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1301,11 +1250,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a2d01b5-544e-4539-9330-5b502231e70a + - e20a3ee2-e2c6-4c72-806c-aebf940f8306 status: 200 OK code: 200 - duration: 72.123541ms - - id: 26 + duration: 79.16475ms + - id: 25 request: proto: HTTP/1.1 proto_major: 1 @@ -1321,7 +1270,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1331,7 +1280,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1340,9 +1289,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:24 GMT + - Mon, 30 Jun 2025 15:46:43 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1350,11 +1299,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4614a5d8-ad93-40d8-b038-75ed6553b3c9 + - df17eea4-9d03-48e2-b3ec-288163502db0 status: 200 OK code: 200 - duration: 62.535459ms - - id: 27 + duration: 70.263958ms + - id: 26 request: proto: HTTP/1.1 proto_major: 1 @@ -1370,7 +1319,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1380,7 +1329,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1389,9 +1338,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:29 GMT + - Mon, 30 Jun 2025 15:46:48 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1399,11 +1348,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ed77453-d519-4993-af57-876c1498e1f5 + - ec5bef4a-bc03-44e9-abb9-d8c51df93f8c status: 200 OK code: 200 - duration: 79.931ms - - id: 28 + duration: 56.716ms + - id: 27 request: proto: HTTP/1.1 proto_major: 1 @@ -1419,7 +1368,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1429,7 +1378,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1438,9 +1387,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:34 GMT + - Mon, 30 Jun 2025 15:46:53 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1448,11 +1397,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a12497d1-e737-4396-9c88-e02a3b55171f + - 0836e59a-ff57-41dd-b6bf-93f7b65b63df status: 200 OK code: 200 - duration: 62.780083ms - - id: 29 + duration: 87.261125ms + - id: 28 request: proto: HTTP/1.1 proto_major: 1 @@ -1468,7 +1417,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1478,7 +1427,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:04.740386+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:46:23.864968+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -1487,9 +1436,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:39 GMT + - Mon, 30 Jun 2025 15:46:59 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1497,11 +1446,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b342f829-1c29-4d8a-b910-e0a306598c05 + - 3c3de61d-81d4-40a3-bec7-88c6ece58565 status: 200 OK code: 200 - duration: 61.93475ms - - id: 30 + duration: 79.183042ms + - id: 29 request: proto: HTTP/1.1 proto_major: 1 @@ -1517,7 +1466,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1527,7 +1476,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1536,9 +1485,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:44 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1546,11 +1495,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fdb3c1c0-344d-417e-9717-11a4bb9acbd3 + - 508528ac-68dc-4554-a15f-f4b9fd2e8be1 status: 200 OK code: 200 - duration: 64.603708ms - - id: 31 + duration: 65.623125ms + - id: 30 request: proto: HTTP/1.1 proto_major: 1 @@ -1566,7 +1515,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -1576,7 +1525,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -1585,9 +1534,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:44 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1595,11 +1544,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7e186205-c291-4817-8ea2-696d3b8c7472 + - 8a35236d-718b-430d-ab6f-7042a7ad7bd1 status: 200 OK code: 200 - duration: 63.776917ms - - id: 32 + duration: 92.110083ms + - id: 31 request: proto: HTTP/1.1 proto_major: 1 @@ -1615,7 +1564,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -1625,7 +1574,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -1634,9 +1583,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:44 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1644,11 +1593,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9d74ea1e-b31e-486e-9300-d7a8b03f207e + - 423d79d4-b8c9-454a-a57c-197a21bc3cf6 status: 200 OK code: 200 - duration: 638.4425ms - - id: 33 + duration: 149.857459ms + - id: 32 request: proto: HTTP/1.1 proto_major: 1 @@ -1664,7 +1613,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -1674,7 +1623,7 @@ interactions: trailer: {} content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - "1026" @@ -1683,9 +1632,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:45 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1693,11 +1642,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f2bae81-3178-489a-a817-22517f1a55f9 + - 5e96ed21-5e0f-45ec-a5ac-11085a0036c0 status: 200 OK code: 200 - duration: 149.026375ms - - id: 34 + duration: 56.125916ms + - id: 33 request: proto: HTTP/1.1 proto_major: 1 @@ -1708,7 +1657,7 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44","destination":"10.0.0.0/24","nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a"}' + body: '{"description":"tf-route-vpn","tags":["tf","route"],"vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","destination":"10.0.0.0/24","nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c"}' form: {} headers: Content-Type: @@ -1725,7 +1674,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "392" @@ -1734,9 +1683,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:45 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1744,11 +1693,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e3e6f266-fac6-4baa-b1f9-be1f15745bc5 + - b0870e70-02d9-4782-84d8-863c5cb22c0d status: 200 OK code: 200 - duration: 118.307208ms - - id: 35 + duration: 113.018292ms + - id: 34 request: proto: HTTP/1.1 proto_major: 1 @@ -1764,7 +1713,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -1774,7 +1723,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "392" @@ -1783,9 +1732,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:45 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1793,11 +1742,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 4bbaa20f-4ae3-4997-9f21-2d77060e121b + - 95464927-a09c-4470-983e-958a95fe8497 status: 200 OK code: 200 - duration: 34.684166ms - - id: 36 + duration: 37.52575ms + - id: 35 request: proto: HTTP/1.1 proto_major: 1 @@ -1813,7 +1762,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -1823,7 +1772,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "392" @@ -1832,9 +1781,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:45 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1842,11 +1791,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1f50fd07-38cd-4a59-b71b-bcebaf6457df + - 12fde8c1-e8b0-493f-b16b-cacbfdd1077b status: 200 OK code: 200 - duration: 54.3095ms - - id: 37 + duration: 36.1435ms + - id: 36 request: proto: HTTP/1.1 proto_major: 1 @@ -1862,7 +1811,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 method: GET response: proto: HTTP/2.0 @@ -1872,7 +1821,7 @@ interactions: trailer: {} content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.487392Z"}' headers: Content-Length: - "397" @@ -1881,9 +1830,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1891,11 +1840,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 15d3d2f8-51e4-4f11-81c0-0781a0b9f4e1 + - c88af687-7d54-49d7-b3aa-d83a45e72f62 status: 200 OK code: 200 - duration: 68.5045ms - - id: 38 + duration: 82.518417ms + - id: 37 request: proto: HTTP/1.1 proto_major: 1 @@ -1911,7 +1860,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 method: GET response: proto: HTTP/2.0 @@ -1921,7 +1870,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "1055" @@ -1930,9 +1879,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1940,11 +1889,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 26ccec17-5640-4371-844a-78d2a37153ab + - a4d8da6b-44d3-40db-ad70-8ee50b1e58d2 status: 200 OK code: 200 - duration: 22.524583ms - - id: 39 + duration: 31.045333ms + - id: 38 request: proto: HTTP/1.1 proto_major: 1 @@ -1960,7 +1909,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -1970,7 +1919,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -1979,9 +1928,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -1989,11 +1938,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 275ba0a4-ef8d-4d9e-bcb1-30c4da974b6a + - e97cfaa4-37e0-4e43-96e7-d36ffaba66e6 status: 200 OK code: 200 - duration: 175.697542ms - - id: 40 + duration: 204.011292ms + - id: 39 request: proto: HTTP/1.1 proto_major: 1 @@ -2009,7 +1958,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -2019,7 +1968,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' headers: Content-Length: - "143" @@ -2028,9 +1977,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2038,11 +1987,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b70f0d2b-eec1-449c-afac-bd665e2a3f5f + - 2e525f9d-9144-43af-ae4e-bfc39d967e1f status: 404 Not Found code: 404 - duration: 29.531ms - - id: 41 + duration: 39.498459ms + - id: 40 request: proto: HTTP/1.1 proto_major: 1 @@ -2058,7 +2007,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -2068,7 +2017,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -2077,9 +2026,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2087,11 +2036,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0eaf1469-0fd2-47dd-b7de-ba5512d72204 + - 40de719c-9bd3-4f50-9d81-a29dc1c87a46 status: 200 OK code: 200 - duration: 55.565458ms - - id: 42 + duration: 40.340333ms + - id: 41 request: proto: HTTP/1.1 proto_major: 1 @@ -2107,7 +2056,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data method: GET response: proto: HTTP/2.0 @@ -2126,9 +2075,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2136,11 +2085,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78cb2965-297d-4916-b284-ee22d112def8 + - e75474e4-614b-49f7-bca0-4f0b8e651dad status: 200 OK code: 200 - duration: 72.743042ms - - id: 43 + duration: 69.758459ms + - id: 42 request: proto: HTTP/1.1 proto_major: 1 @@ -2156,7 +2105,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics method: GET response: proto: HTTP/2.0 @@ -2166,7 +2115,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2175,11 +2124,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2187,13 +2136,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6d450a60-14ad-482c-af34-b2f9006c9acc + - 4a119d5e-9db3-4595-96c7-afb45abc5f48 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 63.216916ms - - id: 44 + duration: 56.013792ms + - id: 43 request: proto: HTTP/1.1 proto_major: 1 @@ -2209,7 +2158,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2219,7 +2168,7 @@ interactions: trailer: {} content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - "1026" @@ -2228,9 +2177,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2238,11 +2187,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d0863e9c-8d8c-4b18-869f-4b296c749b25 + - bb883906-d434-47d6-815d-250cf2b9a60d status: 200 OK code: 200 - duration: 33.487208ms - - id: 45 + duration: 32.047167ms + - id: 44 request: proto: HTTP/1.1 proto_major: 1 @@ -2258,7 +2207,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -2268,7 +2217,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2277,9 +2226,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2287,11 +2236,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d2a2b753-f135-44e2-bee1-9f935391e4de + - d4d9efae-5946-4b00-9834-80fe4724852e status: 200 OK code: 200 - duration: 69.891625ms - - id: 46 + duration: 67.705708ms + - id: 45 request: proto: HTTP/1.1 proto_major: 1 @@ -2307,7 +2256,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -2317,7 +2266,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -2326,9 +2275,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2336,11 +2285,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b2747795-441d-41ec-94e7-ee521d3450cb + - 88b9638b-f072-4935-8421-e8d6a58ebd6d status: 200 OK code: 200 - duration: 147.052708ms - - id: 47 + duration: 155.270542ms + - id: 46 request: proto: HTTP/1.1 proto_major: 1 @@ -2356,7 +2305,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2366,7 +2315,7 @@ interactions: trailer: {} content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - "1026" @@ -2375,9 +2324,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2385,11 +2334,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ee8b9f13-d0ca-4c01-a3b4-998569ecc536 + - 458f6cf5-6e8d-40b3-8b58-7621642d4953 status: 200 OK code: 200 - duration: 60.305042ms - - id: 48 + duration: 87.707666ms + - id: 47 request: proto: HTTP/1.1 proto_major: 1 @@ -2405,7 +2354,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -2415,7 +2364,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "392" @@ -2424,9 +2373,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:46 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2434,11 +2383,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 65ba2903-3db1-4d19-a3f3-6c4eb18d0033 + - 1c88727a-fd35-4876-ad50-f69de85dd72e status: 200 OK code: 200 - duration: 34.922083ms - - id: 49 + duration: 26.760917ms + - id: 48 request: proto: HTTP/1.1 proto_major: 1 @@ -2454,7 +2403,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 method: GET response: proto: HTTP/2.0 @@ -2464,7 +2413,7 @@ interactions: trailer: {} content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.487392Z"}' headers: Content-Length: - "397" @@ -2473,9 +2422,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:05 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2483,11 +2432,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9562f6c2-09c5-4364-9f12-65e7e2d85232 + - 88f4159d-c070-4521-acfa-d0b0c1a82527 status: 200 OK code: 200 - duration: 32.606417ms - - id: 50 + duration: 76.507583ms + - id: 49 request: proto: HTTP/1.1 proto_major: 1 @@ -2503,7 +2452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 method: GET response: proto: HTTP/2.0 @@ -2513,7 +2462,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "1055" @@ -2522,9 +2471,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2532,11 +2481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aff2aae3-01d2-479e-8684-2ac480fd7b0b + - 8832dbf6-ff34-47cf-a736-bf7e0909f63f status: 200 OK code: 200 - duration: 29.066791ms - - id: 51 + duration: 35.138125ms + - id: 50 request: proto: HTTP/1.1 proto_major: 1 @@ -2552,7 +2501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -2562,7 +2511,7 @@ interactions: trailer: {} content_length: 392 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:19:45.648505Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","region":"fr-par","tags":["tf","route"],"updated_at":"2025-06-30T15:47:04.551976Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "392" @@ -2571,9 +2520,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2581,11 +2530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 84da29a2-f8a1-4e74-b06e-9377625f6f55 + - 996fe385-c447-40d6-93e9-b77cb6861e49 status: 200 OK code: 200 - duration: 27.6455ms - - id: 52 + duration: 28.009791ms + - id: 51 request: proto: HTTP/1.1 proto_major: 1 @@ -2601,7 +2550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -2611,7 +2560,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -2620,9 +2569,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2630,11 +2579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d956294-2234-4366-b3a6-a84ff89a0937 + - ab983778-422a-409c-91f4-fd6dd7cee299 status: 200 OK code: 200 - duration: 157.094ms - - id: 53 + duration: 152.407833ms + - id: 52 request: proto: HTTP/1.1 proto_major: 1 @@ -2650,7 +2599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -2660,7 +2609,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' headers: Content-Length: - "143" @@ -2669,9 +2618,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2679,11 +2628,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1ca8aa5f-6400-4bd2-b36f-5b6f73b1a5bf + - 420b0a4f-3eaf-4744-a026-a5eeb723d201 status: 404 Not Found code: 404 - duration: 34.718875ms - - id: 54 + duration: 50.715208ms + - id: 53 request: proto: HTTP/1.1 proto_major: 1 @@ -2699,7 +2648,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -2709,7 +2658,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -2718,9 +2667,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2728,11 +2677,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 198acf64-5116-42fe-803e-aff4ccb00659 + - e58e15e1-df8b-46c2-9366-816f18e08653 status: 200 OK code: 200 - duration: 47.931292ms - - id: 55 + duration: 49.4195ms + - id: 54 request: proto: HTTP/1.1 proto_major: 1 @@ -2748,7 +2697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data method: GET response: proto: HTTP/2.0 @@ -2767,9 +2716,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2777,11 +2726,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e44debd9-646c-435c-900b-0c5a43d99bd2 + - 827ce092-52a5-4c54-ad96-51cd5b17762c status: 200 OK code: 200 - duration: 78.683334ms - - id: 56 + duration: 72.442417ms + - id: 55 request: proto: HTTP/1.1 proto_major: 1 @@ -2797,7 +2746,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics method: GET response: proto: HTTP/2.0 @@ -2807,7 +2756,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -2816,11 +2765,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2828,13 +2777,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 68a6823c-d424-4961-99d9-043f0f4181bd + - 699e4c2c-8e55-4654-ad00-46f1bb7832ef X-Total-Count: - "1" status: 200 OK code: 200 - duration: 69.076209ms - - id: 57 + duration: 62.324209ms + - id: 56 request: proto: HTTP/1.1 proto_major: 1 @@ -2850,7 +2799,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -2860,7 +2809,7 @@ interactions: trailer: {} content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - "1026" @@ -2869,9 +2818,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2879,11 +2828,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 13b59241-8ed5-498c-9c6d-1ca14a0a2a28 + - 079a9ce0-59a1-44e2-a58f-687269509feb status: 200 OK code: 200 - duration: 26.205917ms - - id: 58 + duration: 29.0235ms + - id: 57 request: proto: HTTP/1.1 proto_major: 1 @@ -2899,7 +2848,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -2909,7 +2858,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -2918,9 +2867,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2928,11 +2877,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d6b92a06-4be9-4544-a23f-bbe11b64b35e + - 5e82b205-6bcf-42cd-8a2e-f6bd80c7cd40 status: 200 OK code: 200 - duration: 86.092042ms - - id: 59 + duration: 79.50125ms + - id: 58 request: proto: HTTP/1.1 proto_major: 1 @@ -2948,7 +2897,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -2958,7 +2907,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -2967,9 +2916,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -2977,11 +2926,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 306e6263-d53a-4bb8-90d6-3a89a7c8c425 + - 991edd77-013e-491c-bb1a-eb99ddd22b9e status: 200 OK code: 200 - duration: 152.917625ms - - id: 60 + duration: 153.067875ms + - id: 59 request: proto: HTTP/1.1 proto_major: 1 @@ -2997,7 +2946,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -3007,7 +2956,7 @@ interactions: trailer: {} content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - "1026" @@ -3016,9 +2965,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:47 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3026,11 +2975,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b33b69d4-2dcf-4b2d-894f-c44e7afd7deb + - 0c2f72c5-af24-4cd5-bb1c-f78d2f47efe4 status: 200 OK code: 200 - duration: 59.100458ms - - id: 61 + duration: 47.786084ms + - id: 60 request: proto: HTTP/1.1 proto_major: 1 @@ -3065,11 +3014,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:48 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Link: - ; rel="next",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3077,13 +3026,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 66e9c87f-b674-4fe8-8db8-70d93e496179 + - e6aab8f7-f959-424b-a1fb-8811e9f74d4e X-Total-Count: - "75" status: 200 OK code: 200 - duration: 71.293917ms - - id: 62 + duration: 49.689875ms + - id: 61 request: proto: HTTP/1.1 proto_major: 1 @@ -3118,11 +3067,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:48 GMT + - Mon, 30 Jun 2025 15:47:06 GMT Link: - ; rel="first",; rel="previous",; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3130,13 +3079,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 437c6445-6c5e-4b18-86a8-bec9b571793f + - 5f7e455e-3a48-468a-954e-5e45cc486c38 X-Total-Count: - "75" status: 200 OK code: 200 - duration: 56.8195ms - - id: 63 + duration: 42.913792ms + - id: 62 request: proto: HTTP/1.1 proto_major: 1 @@ -3171,9 +3120,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:48 GMT + - Mon, 30 Jun 2025 15:47:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3181,11 +3130,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8a0b93ac-e1c4-4220-abeb-3f3dd825d7e6 + - 4505bb18-db08-4479-9398-8b80425c27a3 status: 200 OK code: 200 - duration: 81.60425ms - - id: 64 + duration: 95.055333ms + - id: 63 request: proto: HTTP/1.1 proto_major: 1 @@ -3213,7 +3162,7 @@ interactions: trailer: {} content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1692" @@ -3222,11 +3171,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:48 GMT + - Mon, 30 Jun 2025 15:47:07 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3234,11 +3183,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9002e6b4-8b92-47d1-85aa-334aecb39733 + - ff4d3ab4-fc05-400b-a821-a61f61a430ba status: 201 Created code: 201 - duration: 819.796583ms - - id: 65 + duration: 704.02825ms + - id: 64 request: proto: HTTP/1.1 proto_major: 1 @@ -3254,7 +3203,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3264,7 +3213,7 @@ interactions: trailer: {} content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1692" @@ -3273,9 +3222,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:49 GMT + - Mon, 30 Jun 2025 15:47:07 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3283,11 +3232,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3f7d79ab-4d3e-49c7-a9c2-b331262569d1 + - 32b71fd3-39de-477c-b91e-55b8c62adf18 status: 200 OK code: 200 - duration: 246.875917ms - - id: 66 + duration: 174.536375ms + - id: 65 request: proto: HTTP/1.1 proto_major: 1 @@ -3303,7 +3252,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3313,7 +3262,7 @@ interactions: trailer: {} content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:48.384060+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:07.250432+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1692" @@ -3322,9 +3271,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:49 GMT + - Mon, 30 Jun 2025 15:47:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3332,11 +3281,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cadf51b2-384b-48b9-96ea-326a3751fff3 + - 014eda72-8022-46a5-b1e5-4e182e289ab2 status: 200 OK code: 200 - duration: 116.988584ms - - id: 67 + duration: 145.59375ms + - id: 66 request: proto: HTTP/1.1 proto_major: 1 @@ -3352,7 +3301,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -3362,7 +3311,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -3371,9 +3320,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:49 GMT + - Mon, 30 Jun 2025 15:47:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3381,11 +3330,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaa8605b-1f4b-4fcb-94de-a27097339b17 + - 44c3dbbf-9279-4dd7-b86f-34f483a99f3a status: 200 OK code: 200 - duration: 43.914833ms - - id: 68 + duration: 49.515791ms + - id: 67 request: proto: HTTP/1.1 proto_major: 1 @@ -3403,7 +3352,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/action method: POST response: proto: HTTP/2.0 @@ -3413,7 +3362,7 @@ interactions: trailer: {} content_length: 357 uncompressed: false - body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action","href_result":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b","id":"372a4247-c027-4b9c-83f9-884c3197860b","progress":0,"started_at":"2025-06-30T15:19:49.812016+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_batch_poweron","href_from":"/servers/ab11d677-e74e-48d2-a427-5f0649925291/action","href_result":"/servers/ab11d677-e74e-48d2-a427-5f0649925291","id":"faebebb0-bfdc-4299-9070-a9240dfadabc","progress":0,"started_at":"2025-06-30T15:47:08.335965+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "357" @@ -3422,11 +3371,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:49 GMT + - Mon, 30 Jun 2025 15:47:08 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/372a4247-c027-4b9c-83f9-884c3197860b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/faebebb0-bfdc-4299-9070-a9240dfadabc Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3434,11 +3383,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8b59a6d9-ddaa-4d6a-a94f-5fd66cf41a6a + - d3878bc6-6ee3-4411-90ef-2d8d1b8d501f status: 202 Accepted code: 202 - duration: 403.071667ms - - id: 69 + duration: 371.539458ms + - id: 68 request: proto: HTTP/1.1 proto_major: 1 @@ -3454,7 +3403,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3464,7 +3413,7 @@ interactions: trailer: {} content_length: 1714 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:49.472228+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:08.164073+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"starting","state_detail":"allocating node","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1714" @@ -3473,9 +3422,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:50 GMT + - Mon, 30 Jun 2025 15:47:08 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3483,11 +3432,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 49edcb73-dc1a-4685-bfb0-4cc84b7fac2d + - 413abcdb-4390-411d-a1a7-51fe1f777690 status: 200 OK code: 200 - duration: 290.819459ms - - id: 70 + duration: 158.785333ms + - id: 69 request: proto: HTTP/1.1 proto_major: 1 @@ -3503,7 +3452,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3513,7 +3462,7 @@ interactions: trailer: {} content_length: 1848 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1848" @@ -3522,9 +3471,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3532,11 +3481,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3d398ce3-54f9-4d4a-85c3-838b21a2e2da + - 899e4761-b7bb-4d70-afdc-05b700fcf2b4 status: 200 OK code: 200 - duration: 155.085125ms - - id: 71 + duration: 148.543625ms + - id: 70 request: proto: HTTP/1.1 proto_major: 1 @@ -3552,7 +3501,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3562,7 +3511,7 @@ interactions: trailer: {} content_length: 1848 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1848" @@ -3571,9 +3520,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:13 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3581,11 +3530,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c716ac83-44e9-400a-80f1-1c15334a8528 + - bda73a49-37b4-4b03-806e-79b7323fa043 status: 200 OK code: 200 - duration: 129.081666ms - - id: 72 + duration: 165.3755ms + - id: 71 request: proto: HTTP/1.1 proto_major: 1 @@ -3601,7 +3550,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -3611,7 +3560,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' headers: Content-Length: - "143" @@ -3620,9 +3569,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3630,11 +3579,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 52a53196-4c4b-49b8-b7ac-5589decd9058 + - 212d93a8-bc09-4724-bfad-a9606ac5bb6b status: 404 Not Found code: 404 - duration: 41.261ms - - id: 73 + duration: 35.858625ms + - id: 72 request: proto: HTTP/1.1 proto_major: 1 @@ -3650,7 +3599,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -3660,7 +3609,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -3669,9 +3618,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3679,11 +3628,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 11d82fd2-32a4-4869-a546-f9e790801692 + - 17c1e63d-a1c6-457d-add8-b78c7bdbd58b status: 200 OK code: 200 - duration: 47.698417ms - - id: 74 + duration: 46.0645ms + - id: 73 request: proto: HTTP/1.1 proto_major: 1 @@ -3699,7 +3648,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/user_data method: GET response: proto: HTTP/2.0 @@ -3718,9 +3667,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3728,11 +3677,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2a433538-f5f5-4111-a6e6-df7f26e97f9b + - 8d450310-63f4-47e2-b0ac-a914c51fce77 status: 200 OK code: 200 - duration: 68.612333ms - - id: 75 + duration: 74.672042ms + - id: 74 request: proto: HTTP/1.1 proto_major: 1 @@ -3748,7 +3697,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics method: GET response: proto: HTTP/2.0 @@ -3767,11 +3716,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:14 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3779,13 +3728,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e90b01dd-5875-4c98-bdf7-75e79a516fcf + - d70dcaca-7181-4b40-b2d1-152cf10e2704 X-Total-Count: - "0" status: 200 OK code: 200 - duration: 57.725917ms - - id: 76 + duration: 56.586584ms + - id: 75 request: proto: HTTP/1.1 proto_major: 1 @@ -3801,7 +3750,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -3811,7 +3760,7 @@ interactions: trailer: {} content_length: 1848 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1848" @@ -3820,9 +3769,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:19:55 GMT + - Mon, 30 Jun 2025 15:47:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3830,11 +3779,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 660d3dee-a0d8-4350-9cc9-148f87bfcc5e + - 6045b907-5cac-43ba-a845-e7d9128a57c4 status: 200 OK code: 200 - duration: 140.852ms - - id: 77 + duration: 163.093833ms + - id: 76 request: proto: HTTP/1.1 proto_major: 1 @@ -3845,14 +3794,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd"}' + body: '{"private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics method: POST response: proto: HTTP/2.0 @@ -3862,7 +3811,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3871,9 +3820,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:00 GMT + - Mon, 30 Jun 2025 15:47:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3881,11 +3830,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - ecc59a49-3004-4604-b897-2885d4a7eca9 + - f9de141b-5c55-441d-bd17-e84b14bf63b4 status: 201 Created code: 201 - duration: 4.658867875s - - id: 78 + duration: 6.584972125s + - id: 77 request: proto: HTTP/1.1 proto_major: 1 @@ -3901,7 +3850,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -3911,7 +3860,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3920,9 +3869,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:00 GMT + - Mon, 30 Jun 2025 15:47:21 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3930,11 +3879,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93b54f12-1a95-43b3-89ba-516187345640 + - e9c90379-ed60-4578-956e-841ada585f5b status: 200 OK code: 200 - duration: 63.527208ms - - id: 79 + duration: 76.415333ms + - id: 78 request: proto: HTTP/1.1 proto_major: 1 @@ -3950,7 +3899,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -3960,7 +3909,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -3969,9 +3918,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:05 GMT + - Mon, 30 Jun 2025 15:47:26 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -3979,11 +3928,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bcd778a7-d44e-4757-a82b-8a0c20fb279e + - bac05714-a91b-445d-881a-a714db4359c6 status: 200 OK code: 200 - duration: 107.9725ms - - id: 80 + duration: 77.17275ms + - id: 79 request: proto: HTTP/1.1 proto_major: 1 @@ -3999,7 +3948,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4009,7 +3958,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4018,9 +3967,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:10 GMT + - Mon, 30 Jun 2025 15:47:31 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4028,11 +3977,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 61d4e9cc-22a2-4c24-a95f-96d61997f9c2 + - 669dbe21-cccf-4544-9ed5-3787784860b8 status: 200 OK code: 200 - duration: 61.118958ms - - id: 81 + duration: 84.35925ms + - id: 80 request: proto: HTTP/1.1 proto_major: 1 @@ -4048,7 +3997,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4058,7 +4007,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4067,9 +4016,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:15 GMT + - Mon, 30 Jun 2025 15:47:36 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4077,11 +4026,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 990f69f4-27cc-4267-9cf5-d90bfa097a72 + - db1b575f-4e01-4bd3-8e79-9aaed88a01ce status: 200 OK code: 200 - duration: 82.709167ms - - id: 82 + duration: 69.327542ms + - id: 81 request: proto: HTTP/1.1 proto_major: 1 @@ -4097,7 +4046,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4107,7 +4056,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4116,9 +4065,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:20 GMT + - Mon, 30 Jun 2025 15:47:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4126,11 +4075,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - f77828e0-00ae-4099-a670-dddaf80735bc + - 2e00486b-a5ee-449a-ad2f-669b1479863f status: 200 OK code: 200 - duration: 80.372542ms - - id: 83 + duration: 64.231333ms + - id: 82 request: proto: HTTP/1.1 proto_major: 1 @@ -4146,7 +4095,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4156,7 +4105,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4165,9 +4114,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:25 GMT + - Mon, 30 Jun 2025 15:47:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4175,11 +4124,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3cff360f-8efd-4839-9fec-9dfbb64797ea + - 1dbacdd9-abf4-4fad-a996-7855173eba0f status: 200 OK code: 200 - duration: 85.235625ms - - id: 84 + duration: 62.526833ms + - id: 83 request: proto: HTTP/1.1 proto_major: 1 @@ -4195,7 +4144,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4205,7 +4154,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4214,9 +4163,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:31 GMT + - Mon, 30 Jun 2025 15:47:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4224,11 +4173,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 699d734b-94e0-449a-a101-1dd92caffadb + - 257c40a3-e69a-46cf-b356-f60919a847eb status: 200 OK code: 200 - duration: 145.284958ms - - id: 85 + duration: 65.311584ms + - id: 84 request: proto: HTTP/1.1 proto_major: 1 @@ -4244,7 +4193,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4254,7 +4203,7 @@ interactions: trailer: {} content_length: 473 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:19:55.979177+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"syncing","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:14.549118+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"syncing","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "473" @@ -4263,9 +4212,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:36 GMT + - Mon, 30 Jun 2025 15:47:56 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4273,11 +4222,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6adcd653-6e2c-4ab3-9133-f8cb2983eb8d + - 420a367a-3ffc-46d6-aab1-94723e1bef94 status: 200 OK code: 200 - duration: 75.840542ms - - id: 86 + duration: 67.803916ms + - id: 85 request: proto: HTTP/1.1 proto_major: 1 @@ -4293,7 +4242,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4303,7 +4252,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4312,9 +4261,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4322,11 +4271,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d3df26a4-788f-4640-956c-6979c77aac5c + - 8d788232-c0d3-4f32-b780-14282bc43c1b status: 200 OK code: 200 - duration: 57.922542ms - - id: 87 + duration: 82.648584ms + - id: 86 request: proto: HTTP/1.1 proto_major: 1 @@ -4342,7 +4291,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -4352,7 +4301,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -4361,9 +4310,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4371,11 +4320,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8c2cc692-c813-4518-a684-67bb5aa9b2d1 + - ed3b5bb6-4e8f-4424-bf78-e2718b71ce35 status: 200 OK code: 200 - duration: 142.875375ms - - id: 88 + duration: 69.126958ms + - id: 87 request: proto: HTTP/1.1 proto_major: 1 @@ -4391,7 +4340,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -4401,7 +4350,7 @@ interactions: trailer: {} content_length: 2306 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2306" @@ -4410,9 +4359,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4420,11 +4369,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 07638abb-20e9-4fae-a98f-5fc3f99353ae + - 5f1a69c3-21f1-4a82-a05a-2a5278837ad8 status: 200 OK code: 200 - duration: 170.160083ms - - id: 89 + duration: 153.902667ms + - id: 88 request: proto: HTTP/1.1 proto_major: 1 @@ -4440,7 +4389,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -4450,7 +4399,7 @@ interactions: trailer: {} content_length: 1030 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' headers: Content-Length: - "1030" @@ -4459,9 +4408,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4469,11 +4418,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 751c9a63-5073-4d65-94ba-f54a16dab4e2 + - 1c0086c3-0195-4498-8cdf-08bc11ab5165 status: 200 OK code: 200 - duration: 70.338334ms - - id: 90 + duration: 52.85525ms + - id: 89 request: proto: HTTP/1.1 proto_major: 1 @@ -4484,14 +4433,14 @@ interactions: host: api.scaleway.com remote_addr: "" request_uri: "" - body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea"}' + body: '{"description":"tf-route-vpn-updated","tags":["tf","route","updated"],"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8"}' form: {} headers: Content-Type: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: PATCH response: proto: HTTP/2.0 @@ -4501,7 +4450,7 @@ interactions: trailer: {} content_length: 410 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "410" @@ -4510,9 +4459,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:01 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4520,11 +4469,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8189bec2-5380-469e-b689-75a87ea4cef1 + - 8e6d1173-23ce-4fd4-b587-141e0819fe16 status: 200 OK code: 200 - duration: 93.478459ms - - id: 91 + duration: 82.64075ms + - id: 90 request: proto: HTTP/1.1 proto_major: 1 @@ -4540,7 +4489,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -4550,7 +4499,7 @@ interactions: trailer: {} content_length: 410 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "410" @@ -4559,9 +4508,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4569,11 +4518,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 33bc9476-0117-4efd-8f06-fd7664c0979e + - efdfad82-1cdf-477c-88df-93cf13b73a86 status: 200 OK code: 200 - duration: 28.833708ms - - id: 92 + duration: 38.789416ms + - id: 91 request: proto: HTTP/1.1 proto_major: 1 @@ -4589,7 +4538,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -4599,7 +4548,7 @@ interactions: trailer: {} content_length: 410 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "410" @@ -4608,9 +4557,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:41 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4618,11 +4567,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d483ff9d-7de0-4904-b582-d159b098ff3a + - e4d9ef16-938f-4221-882c-742e554b8ffd status: 200 OK code: 200 - duration: 27.26825ms - - id: 93 + duration: 26.939167ms + - id: 92 request: proto: HTTP/1.1 proto_major: 1 @@ -4638,7 +4587,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 method: GET response: proto: HTTP/2.0 @@ -4648,7 +4597,7 @@ interactions: trailer: {} content_length: 397 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.382485Z","custom_routes_propagation_enabled":true,"id":"b54bddc1-57af-481b-b04e-cdca58c96d44","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:18:59.427553Z"}' + body: '{"created_at":"2025-06-30T15:46:15.429130Z","custom_routes_propagation_enabled":true,"id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5","is_default":false,"name":"tf-vpc-vpn","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-06-30T15:46:15.487392Z"}' headers: Content-Length: - "397" @@ -4657,9 +4606,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4667,11 +4616,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 675c1a0c-55a1-48c9-b34e-ec9fa21c8d5b + - 1877c951-6051-4bd2-bfe4-cdf83a329ee3 status: 200 OK code: 200 - duration: 32.5325ms - - id: 94 + duration: 35.137375ms + - id: 93 request: proto: HTTP/1.1 proto_major: 1 @@ -4687,7 +4636,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 method: GET response: proto: HTTP/2.0 @@ -4697,7 +4646,7 @@ interactions: trailer: {} content_length: 1055 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:59.536746Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:18:59.536746Z","id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"},{"created_at":"2025-06-30T15:18:59.536746Z","id":"06c2fa7a-b951-4e9e-8855-74506df72a7c","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:a4c9::/64","updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}],"tags":[],"updated_at":"2025-06-30T15:18:59.536746Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:46:15.601475Z","default_route_propagation_enabled":false,"dhcp_enabled":true,"id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","name":"tf-pn-vpn","organization_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","subnets":[{"created_at":"2025-06-30T15:46:15.601475Z","id":"7ecda96c-dcf4-4e66-90e4-e57420690caa","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"172.16.64.0/22","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"},{"created_at":"2025-06-30T15:46:15.601475Z","id":"825054a6-d76e-4a94-8ee6-9b42aadc144d","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","subnet":"fd46:78ab:30b8:6763::/64","updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}],"tags":[],"updated_at":"2025-06-30T15:46:15.601475Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "1055" @@ -4706,9 +4655,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4716,11 +4665,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 98fc9c51-e161-427b-be04-a1c17d09fee2 + - 81588b87-2108-4201-820b-029a9a5678e9 status: 200 OK code: 200 - duration: 24.434875ms - - id: 95 + duration: 31.534916ms + - id: 94 request: proto: HTTP/1.1 proto_major: 1 @@ -4736,7 +4685,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -4746,7 +4695,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -4755,9 +4704,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4765,11 +4714,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f2f73f9-20fd-4087-811e-0ac7da177778 + - 4f0d55f7-aed1-4d79-91ad-e8bdc5a79c24 status: 200 OK code: 200 - duration: 134.52025ms - - id: 96 + duration: 192.447834ms + - id: 95 request: proto: HTTP/1.1 proto_major: 1 @@ -4785,7 +4734,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -4795,7 +4744,7 @@ interactions: trailer: {} content_length: 2306 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2306" @@ -4804,9 +4753,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4814,11 +4763,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 237102ec-6540-4aa1-a304-f12aa0504e1e + - 912e74b7-fa00-437c-bc1e-430fd37d2acc status: 200 OK code: 200 - duration: 162.768417ms - - id: 97 + duration: 203.735875ms + - id: 96 request: proto: HTTP/1.1 proto_major: 1 @@ -4834,7 +4783,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -4844,7 +4793,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' headers: Content-Length: - "143" @@ -4853,9 +4802,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4863,11 +4812,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 017ae5dd-24e6-41c7-8ab4-53fb9b2b8d1a + - 9c6d1fd7-6daf-494e-8a4b-2bb60d98d62e status: 404 Not Found code: 404 - duration: 30.016292ms - - id: 98 + duration: 36.533667ms + - id: 97 request: proto: HTTP/1.1 proto_major: 1 @@ -4883,7 +4832,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -4893,7 +4842,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' headers: Content-Length: - "143" @@ -4902,9 +4851,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4912,11 +4861,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 334a5f4d-697f-4960-8a0a-7eee66310ba6 + - 2b1e540d-0103-485b-9bec-89aad82468eb status: 404 Not Found code: 404 - duration: 35.609958ms - - id: 99 + duration: 30.275125ms + - id: 98 request: proto: HTTP/1.1 proto_major: 1 @@ -4932,7 +4881,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -4942,7 +4891,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -4951,9 +4900,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -4961,11 +4910,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fd1420dc-2a33-4764-a9e0-9a7c13b34cf9 + - 22ff9cb6-a032-47ef-ac9c-8604d1c8a757 status: 200 OK code: 200 - duration: 50.011583ms - - id: 100 + duration: 45.42925ms + - id: 99 request: proto: HTTP/1.1 proto_major: 1 @@ -4981,7 +4930,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -4991,7 +4940,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -5000,9 +4949,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5010,11 +4959,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 05f41afe-d1fd-4c57-a9ed-3892d2cdd64f + - b271db4f-50bd-484a-965b-34bf5b01d4ee status: 200 OK code: 200 - duration: 59.907375ms - - id: 101 + duration: 72.692459ms + - id: 100 request: proto: HTTP/1.1 proto_major: 1 @@ -5030,7 +4979,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/user_data method: GET response: proto: HTTP/2.0 @@ -5049,9 +4998,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5059,11 +5008,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0ff81d62-a0b8-4bb4-8134-7eeb06f891ca + - da163025-4792-4cf6-9ddc-af34ada7acf4 status: 200 OK code: 200 - duration: 58.045ms - - id: 102 + duration: 87.497791ms + - id: 101 request: proto: HTTP/1.1 proto_major: 1 @@ -5079,7 +5028,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/user_data + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/user_data method: GET response: proto: HTTP/2.0 @@ -5098,9 +5047,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5108,11 +5057,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 20098e7c-a644-4d12-bcea-88dece989761 + - dbbc81a5-e274-4189-8ba9-afb125c84759 status: 200 OK code: 200 - duration: 67.69025ms - - id: 103 + duration: 63.263791ms + - id: 102 request: proto: HTTP/1.1 proto_major: 1 @@ -5128,7 +5077,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics method: GET response: proto: HTTP/2.0 @@ -5138,7 +5087,7 @@ interactions: trailer: {} content_length: 478 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - "478" @@ -5147,11 +5096,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Link: - - ; rel="last" + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5159,13 +5108,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7c90d5e4-1241-48b6-8e74-8532d2168e87 + - 47e21771-a909-437a-801b-bd966f2625f6 X-Total-Count: - "1" status: 200 OK code: 200 - duration: 63.5065ms - - id: 104 + duration: 85.196958ms + - id: 103 request: proto: HTTP/1.1 proto_major: 1 @@ -5181,7 +5130,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics method: GET response: proto: HTTP/2.0 @@ -5189,20 +5138,22 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 478 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}]}' headers: Content-Length: - - "1026" + - "478" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT + Link: + - ; rel="last" Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5210,11 +5161,13 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fe0c635b-3177-49c7-82d1-9b4a0fa20c1b + - 4452ccf4-4db4-4814-955e-ac6a50dd3f33 + X-Total-Count: + - "1" status: 200 OK code: 200 - duration: 40.175458ms - - id: 105 + duration: 105.697292ms + - id: 104 request: proto: HTTP/1.1 proto_major: 1 @@ -5230,7 +5183,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5238,22 +5191,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 478 + content_length: 1026 uncompressed: false - body: '{"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}]}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - - "478" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT - Link: - - ; rel="last" + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5261,13 +5212,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - bea4f625-140c-42f6-8920-ab0c0c28ed35 - X-Total-Count: - - "1" + - c6220737-10f4-43be-8946-19c9bd532325 status: 200 OK code: 200 - duration: 62.662542ms - - id: 106 + duration: 28.904042ms + - id: 105 request: proto: HTTP/1.1 proto_major: 1 @@ -5283,7 +5232,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5293,7 +5242,7 @@ interactions: trailer: {} content_length: 1030 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' headers: Content-Length: - "1030" @@ -5302,9 +5251,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5312,11 +5261,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 206802af-4225-4450-8060-7206998844e6 + - 91af0297-ce66-49fd-8788-59f0f08a15b5 status: 200 OK code: 200 - duration: 30.264875ms - - id: 107 + duration: 38.926083ms + - id: 106 request: proto: HTTP/1.1 proto_major: 1 @@ -5332,7 +5281,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -5342,7 +5291,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5351,9 +5300,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5361,11 +5310,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fa77582-df9c-4ff0-b891-a5a5dc766bd4 + - d9bc96df-03c5-4715-b856-c4d18fdc5817 status: 200 OK code: 200 - duration: 55.405959ms - - id: 108 + duration: 63.928125ms + - id: 107 request: proto: HTTP/1.1 proto_major: 1 @@ -5381,7 +5330,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -5391,7 +5340,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5400,9 +5349,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:02 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5410,11 +5359,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0130ee8-9692-4fc6-8e4c-24613ebaf4ba + - 71754108-64d6-4bab-b1aa-698112cee6e7 status: 200 OK code: 200 - duration: 60.148375ms - - id: 109 + duration: 68.87325ms + - id: 108 request: proto: HTTP/1.1 proto_major: 1 @@ -5430,7 +5379,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -5440,7 +5389,7 @@ interactions: trailer: {} content_length: 2302 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2302" @@ -5449,9 +5398,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5459,11 +5408,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 187eedfa-5a95-4973-aeeb-cecaf94b342e + - b45774dd-9918-4406-9363-fff3b183dc23 status: 200 OK code: 200 - duration: 153.370458ms - - id: 110 + duration: 201.084875ms + - id: 109 request: proto: HTTP/1.1 proto_major: 1 @@ -5479,7 +5428,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -5489,7 +5438,7 @@ interactions: trailer: {} content_length: 2306 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "2306" @@ -5498,9 +5447,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5508,11 +5457,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7597ebcb-03e4-4d48-8812-876a88762731 + - e6254c69-c1af-4e9a-b796-c54ebdfca504 status: 200 OK code: 200 - duration: 159.578166ms - - id: 111 + duration: 158.867125ms + - id: 110 request: proto: HTTP/1.1 proto_major: 1 @@ -5528,7 +5477,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=e42cf3d3-e2f7-461e-a316-54276d16f39a&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=dea74224-1c5b-4692-a13b-7b31e491f5c8&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5536,20 +5485,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1026 + content_length: 1030 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:4b44:79e9:fcfe:4c6a/64","created_at":"2025-06-30T15:19:08.342613Z","id":"7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:08.342613Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:19:06.198279Z","id":"c9b4cde4-d0fc-4580-8ef0-ca123c8284db","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","mac_address":"02:00:00:18:CA:65","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:06.198279Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:2f4d:e345:4c12:6b2b/64","created_at":"2025-06-30T15:47:19.632293Z","id":"9cec1155-d5f3-4846-824b-a99114eeca57","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:47:19.632293Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:47:16.464818Z","id":"6ad9d962-d676-49d4-8738-a3c757075a7b","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","mac_address":"02:00:00:13:14:8B","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:47:16.464818Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1026" + - "1030" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5557,11 +5506,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 5fb74a17-ed8a-4cc8-a388-493a264975e9 + - 29b57cac-ca32-4714-9848-e66b903ee8c0 status: 200 OK code: 200 - duration: 42.574959ms - - id: 112 + duration: 57.603833ms + - id: 111 request: proto: HTTP/1.1 proto_major: 1 @@ -5577,7 +5526,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=7b23e8b3-adf2-4d5e-a669-05c845ac2ecd&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=309ccb3e-c23b-4140-a02f-af63a2b32aea&resource_type=instance_private_nic + url: https://api.scaleway.com/ipam/v1/regions/fr-par/ips?order_by=created_at_desc&private_network_id=82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93&project_id=564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5&resource_id=b99dcb8e-ebb6-4783-9871-ad134ddade9c&resource_type=instance_private_nic method: GET response: proto: HTTP/2.0 @@ -5585,20 +5534,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1030 + content_length: 1026 uncompressed: false - body: '{"ips":[{"address":"fd46:78ab:30b8:a4c9:c15a:8ee7:28cc:8912/64","created_at":"2025-06-30T15:19:59.482695Z","id":"c6d72f6e-8869-4114-bcc0-a848515fdca5","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"06c2fa7a-b951-4e9e-8855-74506df72a7c"},"tags":[],"updated_at":"2025-06-30T15:19:59.482695Z","zone":null},{"address":"172.16.64.3/22","created_at":"2025-06-30T15:19:57.451761Z","id":"007a7cab-16d5-4a57-9464-4ded5f4e725e","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","mac_address":"02:00:00:12:3A:DF","name":"tf-server-vpn-2","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"5ad8d695-9d54-4037-ad84-a340eeeb8f95"},"tags":[],"updated_at":"2025-06-30T15:19:57.451761Z","zone":null}],"total_count":2}' + body: '{"ips":[{"address":"fd46:78ab:30b8:6763:9a57:30a6:c546:bec1/64","created_at":"2025-06-30T15:46:27.364513Z","id":"79e90121-3882-4e9b-ac61-ccfbc84759ff","is_ipv6":true,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"825054a6-d76e-4a94-8ee6-9b42aadc144d"},"tags":[],"updated_at":"2025-06-30T15:46:27.364513Z","zone":null},{"address":"172.16.64.2/22","created_at":"2025-06-30T15:46:25.308729Z","id":"8289fc16-ae1c-4465-9f22-6384e5fd98c7","is_ipv6":false,"project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","region":"fr-par","resource":{"id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","mac_address":"02:00:00:1D:14:6C","name":"tf-server-vpn","type":"instance_private_nic"},"reverses":[],"source":{"subnet_id":"7ecda96c-dcf4-4e66-90e4-e57420690caa"},"tags":[],"updated_at":"2025-06-30T15:46:25.308729Z","zone":null}],"total_count":2}' headers: Content-Length: - - "1030" + - "1026" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5606,11 +5555,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8361f583-c439-495f-bfe3-32920bae0c67 + - 2dfcd757-c7ee-4e0e-8fc9-e5214bb013eb status: 200 OK code: 200 - duration: 51.650166ms - - id: 113 + duration: 63.740375ms + - id: 112 request: proto: HTTP/1.1 proto_major: 1 @@ -5626,7 +5575,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -5636,7 +5585,7 @@ interactions: trailer: {} content_length: 410 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:45.648505Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"7848fcb8-91d0-4fb4-98c5-02c75ddfede6","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:20:41.709604Z","vpc_id":"b54bddc1-57af-481b-b04e-cdca58c96d44"}' + body: '{"created_at":"2025-06-30T15:47:04.551976Z","description":"tf-route-vpn-updated","destination":"10.0.0.0/24","id":"b42b7abb-6750-4a86-bf83-be23105b0310","is_read_only":false,"nexthop_private_network_id":null,"nexthop_resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","region":"fr-par","tags":["tf","route","updated"],"updated_at":"2025-06-30T15:48:01.977354Z","vpc_id":"2f19e97d-0c94-4690-b262-b2d10fb23ea5"}' headers: Content-Length: - "410" @@ -5645,9 +5594,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:42 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5655,11 +5604,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - d420ba63-a7fc-4184-8b7a-970a183b82d5 + - 9bd7a8a4-48e0-4e78-ba37-7969cdc750a8 status: 200 OK code: 200 - duration: 30.308791ms - - id: 114 + duration: 31.687208ms + - id: 113 request: proto: HTTP/1.1 proto_major: 1 @@ -5675,28 +5624,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a - method: GET + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 475 + content_length: 0 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:04.579265+00:00","id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","ipam_ip_ids":["c9b4cde4-d0fc-4580-8ef0-ca123c8284db","7ed7150e-bfa5-4abf-9e1f-4e5f3b16a039"],"mac_address":"02:00:00:18:ca:65","modification_date":"2025-06-30T15:19:43.132937+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","state":"available","tags":[],"zone":"fr-par-1"}}' + body: "" headers: - Content-Length: - - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5704,11 +5651,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1c5d70fd-cd0a-4801-a9ef-e7220ea1b9e6 - status: 200 OK - code: 200 - duration: 58.841417ms - - id: 115 + - cb4778f9-e2b6-4092-9277-37e98513d5b2 + status: 204 No Content + code: 204 + duration: 55.541625ms + - id: 114 request: proto: HTTP/1.1 proto_major: 1 @@ -5724,26 +5671,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 475 uncompressed: false - body: "" + body: '{"private_nic":{"creation_date":"2025-06-30T15:46:23.717167+00:00","id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","ipam_ip_ids":["8289fc16-ae1c-4465-9f22-6384e5fd98c7","79e90121-3882-4e9b-ac61-ccfbc84759ff"],"mac_address":"02:00:00:1d:14:6c","modification_date":"2025-06-30T15:47:03.619436+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","state":"available","tags":[],"zone":"fr-par-1"}}' headers: + Content-Length: + - "475" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5751,11 +5700,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c6f225e1-5a81-4eed-9199-33d70de51c48 - status: 204 No Content - code: 204 - duration: 68.244875ms - - id: 116 + - d2b77351-aa5a-440a-883e-d7f146805ee8 + status: 200 OK + code: 200 + duration: 65.560041ms + - id: 115 request: proto: HTTP/1.1 proto_major: 1 @@ -5771,7 +5720,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -5781,7 +5730,7 @@ interactions: trailer: {} content_length: 475 uncompressed: false - body: '{"private_nic":{"creation_date":"2025-06-30T15:19:55.821102+00:00","id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","ipam_ip_ids":["007a7cab-16d5-4a57-9464-4ded5f4e725e","c6d72f6e-8869-4114-bcc0-a848515fdca5"],"mac_address":"02:00:00:12:3a:df","modification_date":"2025-06-30T15:20:36.960715+00:00","private_network_id":"7b23e8b3-adf2-4d5e-a669-05c845ac2ecd","server_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","state":"available","tags":[],"zone":"fr-par-1"}}' + body: '{"private_nic":{"creation_date":"2025-06-30T15:47:14.391613+00:00","id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","ipam_ip_ids":["6ad9d962-d676-49d4-8738-a3c757075a7b","9cec1155-d5f3-4846-824b-a99114eeca57"],"mac_address":"02:00:00:13:14:8b","modification_date":"2025-06-30T15:47:58.338126+00:00","private_network_id":"82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93","server_id":"ab11d677-e74e-48d2-a427-5f0649925291","state":"available","tags":[],"zone":"fr-par-1"}}' headers: Content-Length: - "475" @@ -5790,9 +5739,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5800,11 +5749,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6822803d-fba6-4817-99af-b572ae375c6d + - d951e315-6fec-4217-9cea-8820ff5dd0ad status: 200 OK code: 200 - duration: 84.288083ms - - id: 117 + duration: 53.397709ms + - id: 116 request: proto: HTTP/1.1 proto_major: 1 @@ -5820,7 +5769,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: DELETE response: proto: HTTP/2.0 @@ -5837,9 +5786,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5847,11 +5796,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 0f064a8d-e86f-4c76-a25f-85c8839767de + - ba205e0f-a1c1-4114-a6d8-9d068050adf7 status: 204 No Content code: 204 - duration: 501.312209ms - - id: 118 + duration: 465.046791ms + - id: 117 request: proto: HTTP/1.1 proto_major: 1 @@ -5867,7 +5816,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: DELETE response: proto: HTTP/2.0 @@ -5884,9 +5833,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:03 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5894,11 +5843,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - c08b8d46-d3c8-4d5f-8f74-f9125cf8dd6e + - d3588a7f-6353-4972-b54b-ad1edd93b81c status: 204 No Content code: 204 - duration: 400.8385ms - - id: 119 + duration: 415.345167ms + - id: 118 request: proto: HTTP/1.1 proto_major: 1 @@ -5914,7 +5863,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/private_nics/e42cf3d3-e2f7-461e-a316-54276d16f39a + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/private_nics/dea74224-1c5b-4692-a13b-7b31e491f5c8 method: GET response: proto: HTTP/2.0 @@ -5924,7 +5873,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"e42cf3d3-e2f7-461e-a316-54276d16f39a","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"dea74224-1c5b-4692-a13b-7b31e491f5c8","type":"not_found"}' headers: Content-Length: - "148" @@ -5933,9 +5882,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5943,11 +5892,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9708677e-357f-4d39-a9e4-ef59b98253de + - 2ce2b23c-5f3c-47c2-87a8-0b8be0a084e9 status: 404 Not Found code: 404 - duration: 72.680625ms - - id: 120 + duration: 93.251458ms + - id: 119 request: proto: HTTP/1.1 proto_major: 1 @@ -5963,7 +5912,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/private_nics/309ccb3e-c23b-4140-a02f-af63a2b32aea + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/private_nics/b99dcb8e-ebb6-4783-9871-ad134ddade9c method: GET response: proto: HTTP/2.0 @@ -5973,7 +5922,7 @@ interactions: trailer: {} content_length: 148 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"309ccb3e-c23b-4140-a02f-af63a2b32aea","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_private_nic","resource_id":"b99dcb8e-ebb6-4783-9871-ad134ddade9c","type":"not_found"}' headers: Content-Length: - "148" @@ -5982,9 +5931,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -5992,11 +5941,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 993955b7-8a81-4e5b-b78a-a8cabc929f37 + - c7be2fb4-0402-462a-b69f-3034514cec53 status: 404 Not Found code: 404 - duration: 75.472833ms - - id: 121 + duration: 102.957209ms + - id: 120 request: proto: HTTP/1.1 proto_major: 1 @@ -6012,7 +5961,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6020,20 +5969,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1848 + content_length: 1844 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:19:52.584467+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:46:20.102510+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1848" + - "1844" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6041,11 +5990,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8cbe7ffc-0976-471a-8abe-c53e5ef4d123 + - fb33b643-d3f2-4410-9009-60914f2ccff5 status: 200 OK code: 200 - duration: 141.185167ms - - id: 122 + duration: 148.010083ms + - id: 121 request: proto: HTTP/1.1 proto_major: 1 @@ -6061,7 +6010,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6069,20 +6018,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1844 + content_length: 1848 uncompressed: false - body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:19:01.283683+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweroff","terminate","reboot","stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:47:11.022823+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"running","state_detail":"booting kernel","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1844" + - "1848" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6090,11 +6039,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 22674d28-2d5c-4e23-93a9-9b8bedfa030e + - 9406c437-c2b2-4890-8ee6-1531a8a7856c status: 200 OK code: 200 - duration: 147.900583ms - - id: 123 + duration: 188.937541ms + - id: 122 request: proto: HTTP/1.1 proto_major: 1 @@ -6110,7 +6059,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -6120,7 +6069,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:19:48.522756Z","id":"814b7eb8-dc47-4538-8026-9a316759a6c9","product_resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:19:48.522756Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:46:15.899711Z","id":"cad5940b-5b6c-4274-a957-2c43a0b07efb","product_resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:46:15.899711Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -6129,9 +6078,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6139,11 +6088,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 061427d9-73a6-4c1a-b7f8-72d6313ad82d + - 5a82d512-99b7-4fda-b0e8-e9f693a1944f status: 200 OK code: 200 - duration: 47.873208ms - - id: 124 + duration: 40.854417ms + - id: 123 request: proto: HTTP/1.1 proto_major: 1 @@ -6159,7 +6108,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -6169,7 +6118,7 @@ interactions: trailer: {} content_length: 665 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:18:57.696688Z","id":"deea83cf-4b97-4080-a170-88fc0be2c70b","product_resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:18:57.696688Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":null,"name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[{"created_at":"2025-06-30T15:47:07.360962Z","id":"d28c9bce-cdce-4e84-b2aa-d2de6329bf4d","product_resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","product_resource_type":"instance_server","status":"attached","type":"exclusive"}],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"in_use","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:47:07.360962Z","zone":"fr-par-1"}' headers: Content-Length: - "665" @@ -6178,9 +6127,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:43 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6188,11 +6137,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9a8738ba-9e3d-42ab-a02d-62f1df68fbb7 + - b64bd658-bcdf-4a4a-add7-8b6aa8be6db2 status: 200 OK code: 200 - duration: 52.801958ms - - id: 125 + duration: 43.635834ms + - id: 124 request: proto: HTTP/1.1 proto_major: 1 @@ -6210,7 +6159,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action method: POST response: proto: HTTP/2.0 @@ -6220,7 +6169,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b/action","href_result":"/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b","id":"fcaefc1b-1a56-4ddc-9c67-636d7f84024b","progress":0,"started_at":"2025-06-30T15:20:44.056815+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d/action","href_result":"/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","id":"15d4acb7-8a25-46a1-aaa0-8ed4fee45c9c","progress":0,"started_at":"2025-06-30T15:48:04.439230+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -6229,11 +6178,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:44 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/fcaefc1b-1a56-4ddc-9c67-636d7f84024b + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/15d4acb7-8a25-46a1-aaa0-8ed4fee45c9c Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6241,11 +6190,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 161018be-3c63-439d-bf3e-446d805c6ec1 + - 4869c57e-cd7b-4a50-9502-11154efe0ca2 status: 202 Accepted code: 202 - duration: 225.134875ms - - id: 126 + duration: 248.89175ms + - id: 125 request: proto: HTTP/1.1 proto_major: 1 @@ -6263,7 +6212,7 @@ interactions: - application/json User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291/action method: POST response: proto: HTTP/2.0 @@ -6273,7 +6222,7 @@ interactions: trailer: {} content_length: 352 uncompressed: false - body: '{"task":{"description":"server_poweroff","href_from":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3/action","href_result":"/servers/273d99f4-edbc-46f8-b129-748d0a28aba3","id":"26988ca0-58eb-47d7-bda2-2da64add95cc","progress":0,"started_at":"2025-06-30T15:20:44.058840+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' + body: '{"task":{"description":"server_poweroff","href_from":"/servers/ab11d677-e74e-48d2-a427-5f0649925291/action","href_result":"/servers/ab11d677-e74e-48d2-a427-5f0649925291","id":"b2c10929-1ae3-47da-94b3-28975133c4ee","progress":0,"started_at":"2025-06-30T15:48:04.504840+00:00","status":"pending","terminated_at":null,"zone":"fr-par-1"}}' headers: Content-Length: - "352" @@ -6282,11 +6231,11 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:44 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Location: - - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/26988ca0-58eb-47d7-bda2-2da64add95cc + - https://api.scaleway.com/instance/v1/zones/fr-par-1/tasks/b2c10929-1ae3-47da-94b3-28975133c4ee Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6294,11 +6243,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 91b11f57-be49-4327-b2fd-3fbea6b28cca + - e87c2ff3-3f0d-4a04-98fa-0d3eee718d8a status: 202 Accepted code: 202 - duration: 219.252667ms - - id: 127 + duration: 274.653875ms + - id: 126 request: proto: HTTP/1.1 proto_major: 1 @@ -6314,7 +6263,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6322,20 +6271,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1808" + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:44 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6343,11 +6292,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6b80c0da-70cb-48d7-b004-8b7d7fa5819a + - b1d42149-4b6c-4b2c-8ccf-ef682c13f8bc status: 200 OK code: 200 - duration: 144.294917ms - - id: 128 + duration: 196.400083ms + - id: 127 request: proto: HTTP/1.1 proto_major: 1 @@ -6363,7 +6312,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6371,20 +6320,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1804" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:44 GMT + - Mon, 30 Jun 2025 15:48:04 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6392,10 +6341,57 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 506c6a36-8266-46de-a44d-773f1283886c + - e5acff6e-752c-4b73-a3ce-11afa5f05e11 status: 200 OK code: 200 - duration: 145.369792ms + duration: 276.847834ms + - id: 128 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/82ceab27-66b3-44b6-ac6d-cf5ae3d6ca93 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:48:06 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 757737d9-891d-42d0-ab80-fe60bb1656e6 + status: 204 No Content + code: 204 + duration: 2.838335083s - id: 129 request: proto: HTTP/1.1 @@ -6412,7 +6408,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd + url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/2f19e97d-0c94-4690-b262-b2d10fb23ea5 method: DELETE response: proto: HTTP/2.0 @@ -6420,20 +6416,18 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 28 + content_length: 0 uncompressed: false - body: '{"message":"internal error"}' + body: "" headers: - Content-Length: - - "28" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:48 GMT + - Mon, 30 Jun 2025 15:48:06 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6441,10 +6435,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - aaf06dec-bf57-4376-beba-a3e63a7d8195 - status: 500 Internal Server Error - code: 500 - duration: 5.095397875s + - 4420c380-af53-41b9-ada7-ff76750c6095 + status: 204 No Content + code: 204 + duration: 154.291417ms - id: 130 request: proto: HTTP/1.1 @@ -6461,7 +6455,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6471,7 +6465,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -6480,9 +6474,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:49 GMT + - Mon, 30 Jun 2025 15:48:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6490,10 +6484,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbcfa2f4-f186-467f-998e-4fbc516a5d76 + - 33eb03df-0668-420d-8f20-437b32f0ef60 status: 200 OK code: 200 - duration: 237.869667ms + duration: 156.480708ms - id: 131 request: proto: HTTP/1.1 @@ -6510,7 +6504,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6520,7 +6514,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -6529,9 +6523,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:49 GMT + - Mon, 30 Jun 2025 15:48:09 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6539,10 +6533,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 6836d96b-e93e-4458-a576-027d6a3c583f + - 01708312-fc7c-42e4-ac97-f565b2cf1871 status: 200 OK code: 200 - duration: 237.710125ms + duration: 183.591375ms - id: 132 request: proto: HTTP/1.1 @@ -6559,26 +6553,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/private-networks/7b23e8b3-adf2-4d5e-a669-05c845ac2ecd - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1804 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:52 GMT + - Mon, 30 Jun 2025 15:48:14 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6586,10 +6582,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 9c7758db-1ec1-43a6-87c4-106d50a860c3 - status: 204 No Content - code: 204 - duration: 1.900680084s + - db1a7694-7cad-4c63-9782-a94d91435e8d + status: 200 OK + code: 200 + duration: 143.361875ms - id: 133 request: proto: HTTP/1.1 @@ -6606,26 +6602,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/vpcs/b54bddc1-57af-481b-b04e-cdca58c96d44 - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1808 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:52 GMT + - Mon, 30 Jun 2025 15:48:15 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6633,10 +6631,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7ef4f919-e036-4ef1-97f8-70982dddcd4c - status: 204 No Content - code: 204 - duration: 110.961667ms + - 51509a82-16c5-4211-a482-752ec64961f6 + status: 200 OK + code: 200 + duration: 193.407375ms - id: 134 request: proto: HTTP/1.1 @@ -6653,7 +6651,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6661,20 +6659,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1808 + content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1808" + - "1804" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:54 GMT + - Mon, 30 Jun 2025 15:48:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6682,10 +6680,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - de5eeb77-ee56-456d-8d52-740b8ebbb7b8 + - c0e550ec-fdb8-4520-9cc9-785967df00e7 status: 200 OK code: 200 - duration: 153.730417ms + duration: 187.181417ms - id: 135 request: proto: HTTP/1.1 @@ -6702,7 +6700,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6710,20 +6708,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1804 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1804" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:54 GMT + - Mon, 30 Jun 2025 15:48:20 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6731,10 +6729,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a31d4069-f25f-45b1-967b-ad55e3cd62a8 + - edb76d52-4b95-405d-b9e5-ed15006feee5 status: 200 OK code: 200 - duration: 161.698167ms + duration: 184.633375ms - id: 136 request: proto: HTTP/1.1 @@ -6751,7 +6749,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6761,7 +6759,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -6770,9 +6768,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:59 GMT + - Mon, 30 Jun 2025 15:48:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6780,10 +6778,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfafd238-2ed2-4c1b-9341-3154d8bfacd4 + - 4a5a79bf-2c9a-4813-9f7f-6a77e932a388 status: 200 OK code: 200 - duration: 147.625417ms + duration: 162.551583ms - id: 137 request: proto: HTTP/1.1 @@ -6800,7 +6798,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6810,7 +6808,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -6819,9 +6817,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:20:59 GMT + - Mon, 30 Jun 2025 15:48:25 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6829,10 +6827,10 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 8d74ebba-10c9-4d37-a3eb-c2111c161abc + - 2c2766eb-d4b5-4cbc-b42d-960ba8a46df5 status: 200 OK code: 200 - duration: 158.988167ms + duration: 184.749417ms - id: 138 request: proto: HTTP/1.1 @@ -6849,7 +6847,56 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d + method: GET + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 1804 + uncompressed: false + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + headers: + Content-Length: + - "1804" + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:48:30 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - d531635a-4b5f-40c1-820c-d4160307b77f + status: 200 OK + code: 200 + duration: 259.989375ms + - id: 139 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6859,7 +6906,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -6868,9 +6915,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:04 GMT + - Mon, 30 Jun 2025 15:48:30 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6878,11 +6925,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 3c08fc5d-bee7-466b-a0f7-f6b4530c83be + - 18ae6eb0-1135-4428-a9eb-4c431a772b4a status: 200 OK code: 200 - duration: 139.737708ms - - id: 139 + duration: 145.926459ms + - id: 140 request: proto: HTTP/1.1 proto_major: 1 @@ -6898,7 +6945,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -6908,7 +6955,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -6917,9 +6964,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:04 GMT + - Mon, 30 Jun 2025 15:48:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6927,11 +6974,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 55a01f73-58d3-4622-8368-b321064532c3 + - 9498bbda-dfdf-4303-b565-3f667e76a5b5 status: 200 OK code: 200 - duration: 162.268333ms - - id: 140 + duration: 169.30325ms + - id: 141 request: proto: HTTP/1.1 proto_major: 1 @@ -6947,7 +6994,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -6957,7 +7004,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -6966,9 +7013,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:10 GMT + - Mon, 30 Jun 2025 15:48:35 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -6976,11 +7023,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 066cf380-f5a9-4b32-81e5-ed46fed235cc + - 9938f3c7-bbee-4570-bcca-d0e0eb3e9df9 status: 200 OK code: 200 - duration: 164.710083ms - - id: 141 + duration: 158.312416ms + - id: 142 request: proto: HTTP/1.1 proto_major: 1 @@ -6996,7 +7043,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -7006,7 +7053,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -7015,9 +7062,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:10 GMT + - Mon, 30 Jun 2025 15:48:40 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7025,11 +7072,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - dfd38600-b82e-4f8b-b0cd-ca03e051ce41 + - 64d06726-eaa6-42a0-bcc4-ae3767a72d12 status: 200 OK code: 200 - duration: 180.295875ms - - id: 142 + duration: 156.402542ms + - id: 143 request: proto: HTTP/1.1 proto_major: 1 @@ -7045,7 +7092,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -7055,7 +7102,7 @@ interactions: trailer: {} content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"60","hypervisor_id":"701","node_id":"27","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:20:43.908364+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1808" @@ -7064,9 +7111,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:15 GMT + - Mon, 30 Jun 2025 15:48:41 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7074,11 +7121,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 78005d75-b31c-4aa5-a3df-fb091524a063 + - ec5f7bba-a5f2-452f-ac2d-a62db703ae70 status: 200 OK code: 200 - duration: 155.603458ms - - id: 143 + duration: 138.627125ms + - id: 144 request: proto: HTTP/1.1 proto_major: 1 @@ -7094,7 +7141,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -7104,7 +7151,7 @@ interactions: trailer: {} content_length: 1804 uncompressed: false - body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"201","node_id":"19","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:20:43.905382+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"7","hypervisor_id":"601","node_id":"182","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:04.255343+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1804" @@ -7113,9 +7160,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:15 GMT + - Mon, 30 Jun 2025 15:48:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7123,11 +7170,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 1502f448-e674-4841-b8e0-b6634768aa76 + - b31166d3-bfdd-4976-9b4b-56fdb8cad20e status: 200 OK code: 200 - duration: 159.916292ms - - id: 144 + duration: 151.979709ms + - id: 145 request: proto: HTTP/1.1 proto_major: 1 @@ -7143,7 +7190,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -7151,20 +7198,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 1692 + content_length: 1808 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:21:17.915143+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["stop_in_place","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":{"cluster_id":"30","hypervisor_id":"801","node_id":"65","platform_id":"14","zone_id":"fr-par-1"},"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:04.291945+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopping","state_detail":"stopping","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - - "1692" + - "1808" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:46 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7172,11 +7219,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 869e5210-bb5d-43c2-877c-9ecec161dd88 + - 153cdda2-9ab2-4cbd-8931-1d16d5ec671f status: 200 OK code: 200 - duration: 145.744625ms - - id: 145 + duration: 139.532791ms + - id: 146 request: proto: HTTP/1.1 proto_major: 1 @@ -7192,7 +7239,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -7202,7 +7249,7 @@ interactions: trailer: {} content_length: 1688 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:21:17.687132+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:48.388561+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1688" @@ -7211,9 +7258,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7221,11 +7268,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 93128a38-4438-4e3a-b6b0-cf7a8dcc0df2 + - a08a0767-5e73-40ca-a74f-b8e8419eee1a status: 200 OK code: 200 - duration: 148.408291ms - - id: 146 + duration: 135.017416ms + - id: 147 request: proto: HTTP/1.1 proto_major: 1 @@ -7241,7 +7288,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -7251,7 +7298,7 @@ interactions: trailer: {} content_length: 1692 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:19:48.384060+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:0b","maintenances":[],"modification_date":"2025-06-30T15:21:17.915143+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:48.201011+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1692" @@ -7260,9 +7307,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7270,11 +7317,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 06107bcd-47b6-4cd0-b5d1-e7d4170cf72c + - 974cce5f-78fa-4e5a-b14d-84174d6f4049 status: 200 OK code: 200 - duration: 135.227958ms - - id: 147 + duration: 140.169541ms + - id: 148 request: proto: HTTP/1.1 proto_major: 1 @@ -7290,7 +7337,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -7300,7 +7347,7 @@ interactions: trailer: {} content_length: 1688 uncompressed: false - body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:18:57.535465+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"273d99f4-edbc-46f8-b129-748d0a28aba3","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:25:07","maintenances":[],"modification_date":"2025-06-30T15:21:17.687132+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:46:15.773412+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn","id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:51","maintenances":[],"modification_date":"2025-06-30T15:48:48.388561+00:00","name":"tf-server-vpn","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"d9a1ae61-7045-4c33-8700-54a3587754f9","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: Content-Length: - "1688" @@ -7309,9 +7356,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7319,11 +7366,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - fbcd8c1a-2778-4755-9492-ea070081acbd + - a34ef37b-3355-4e83-802a-1dcfb12d0e56 status: 200 OK code: 200 - duration: 140.116583ms - - id: 148 + duration: 139.084709ms + - id: 149 request: proto: HTTP/1.1 proto_major: 1 @@ -7339,26 +7386,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b - method: DELETE + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 1692 uncompressed: false - body: "" + body: '{"server":{"allowed_actions":["poweron","backup"],"arch":"x86_64","boot_type":"local","bootscript":null,"commercial_type":"PLAY2-MICRO","creation_date":"2025-06-30T15:47:07.250432+00:00","dynamic_ip_required":false,"enable_ipv6":false,"end_of_service":false,"extra_networks":[],"filesystems":[],"hostname":"tf-server-vpn-2","id":"ab11d677-e74e-48d2-a427-5f0649925291","image":{"arch":"x86_64","creation_date":"2024-10-15T08:13:40.095967+00:00","default_bootscript":null,"extra_volumes":{},"from_server":"","id":"2bcfefe6-7dfc-497b-a4a5-d8b1fc7bb821","modification_date":"2024-10-15T08:13:40.095967+00:00","name":"openvpn","organization":"51b656e3-4865-41e8-adbc-0c45bdd780db","project":"51b656e3-4865-41e8-adbc-0c45bdd780db","public":true,"root_volume":{"id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","name":"","size":0,"volume_type":"sbs_snapshot"},"state":"available","tags":[],"zone":"fr-par-1"},"ipv6":null,"location":null,"mac_address":"de:00:00:ba:26:61","maintenances":[],"modification_date":"2025-06-30T15:48:48.201011+00:00","name":"tf-server-vpn-2","organization":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","placement_group":null,"private_ip":null,"private_nics":[],"project":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","protected":false,"public_ip":null,"public_ips":[],"routed_ip_enabled":true,"security_group":{"id":"a1d9b162-a45c-4f51-9bf4-c7f654848422","name":"Default security group"},"state":"stopped","state_detail":"","tags":[],"volumes":{"0":{"boot":false,"id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","volume_type":"sbs_volume","zone":"fr-par-1"}},"zone":"fr-par-1"}}' headers: + Content-Length: + - "1692" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7366,11 +7415,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 944943c1-06d7-4ab1-b672-c5be01813e6d - status: 204 No Content - code: 204 - duration: 209.960083ms - - id: 149 + - 2c2d93d4-a74c-4918-963b-9a0f544c94b3 + status: 200 OK + code: 200 + duration: 173.237083ms + - id: 150 request: proto: HTTP/1.1 proto_major: 1 @@ -7386,7 +7435,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: DELETE response: proto: HTTP/2.0 @@ -7403,9 +7452,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7413,11 +7462,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b6d96e59-5c05-455a-8a90-3ad0b47bbccb + - a0f0fc06-5292-47f1-8400-18616aa5e524 status: 204 No Content code: 204 - duration: 225.230458ms - - id: 150 + duration: 489.79625ms + - id: 151 request: proto: HTTP/1.1 proto_major: 1 @@ -7433,7 +7482,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/a492c48f-1c63-4f6f-97ea-f97d58e1589b + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/11a3c171-1b8c-4c5f-b573-8cdf9223ef7d method: GET response: proto: HTTP/2.0 @@ -7443,7 +7492,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"a492c48f-1c63-4f6f-97ea-f97d58e1589b","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"11a3c171-1b8c-4c5f-b573-8cdf9223ef7d","type":"not_found"}' headers: Content-Length: - "143" @@ -7452,9 +7501,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7462,11 +7511,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - e0b1145b-7ab8-438c-80ea-4a9131a4d60b + - a5983ef3-074c-43ed-810f-1dd299f4efed status: 404 Not Found code: 404 - duration: 132.47575ms - - id: 151 + duration: 94.495334ms + - id: 152 request: proto: HTTP/1.1 proto_major: 1 @@ -7482,28 +7531,26 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 - method: GET + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 + method: DELETE response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 143 + content_length: 0 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","type":"not_found"}' + body: "" headers: - Content-Length: - - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7511,11 +7558,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 2e9b006e-4ad4-49e3-930c-d212f1f13913 - status: 404 Not Found - code: 404 - duration: 57.67125ms - - id: 152 + - aa9359e3-a6a7-4c64-b0a4-4c8cef189285 + status: 204 No Content + code: 204 + duration: 484.239916ms + - id: 153 request: proto: HTTP/1.1 proto_major: 1 @@ -7531,7 +7578,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/273d99f4-edbc-46f8-b129-748d0a28aba3 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -7541,7 +7588,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_server","resource_id":"273d99f4-edbc-46f8-b129-748d0a28aba3","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"d9a1ae61-7045-4c33-8700-54a3587754f9","type":"not_found"}' headers: Content-Length: - "143" @@ -7550,9 +7597,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:20 GMT + - Mon, 30 Jun 2025 15:48:51 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7560,11 +7607,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 7222a2a2-7e2c-405b-9780-269dc6e41af8 + - aa55aae8-37dd-49bd-b2c3-f466f746a90d status: 404 Not Found code: 404 - duration: 146.584375ms - - id: 153 + duration: 37.269625ms + - id: 154 request: proto: HTTP/1.1 proto_major: 1 @@ -7580,7 +7627,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 method: GET response: proto: HTTP/2.0 @@ -7590,7 +7637,7 @@ interactions: trailer: {} content_length: 463 uncompressed: false - body: '{"created_at":"2025-06-30T15:19:48.522756Z","id":"74c0b78b-6821-4cd1-a33e-d0ed7beffef1","last_detached_at":"2025-06-30T15:21:20.845595Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:21:20.845595Z","zone":"fr-par-1"}' + body: '{"created_at":"2025-06-30T15:46:15.899711Z","id":"d9a1ae61-7045-4c33-8700-54a3587754f9","last_detached_at":"2025-06-30T15:48:51.821807Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:48:51.821807Z","zone":"fr-par-1"}' headers: Content-Length: - "463" @@ -7599,9 +7646,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7609,11 +7656,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - b5c74448-600b-4d18-98c2-d32e36cfa6b4 + - c0fb1cd5-8b2c-4c16-9bd5-19e7da415705 status: 200 OK code: 200 - duration: 52.188166ms - - id: 154 + duration: 54.634458ms + - id: 155 request: proto: HTTP/1.1 proto_major: 1 @@ -7629,7 +7676,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/servers/ab11d677-e74e-48d2-a427-5f0649925291 method: GET response: proto: HTTP/2.0 @@ -7639,7 +7686,7 @@ interactions: trailer: {} content_length: 143 uncompressed: false - body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","type":"not_found"}' + body: '{"message":"resource is not found","resource":"instance_server","resource_id":"ab11d677-e74e-48d2-a427-5f0649925291","type":"not_found"}' headers: Content-Length: - "143" @@ -7648,9 +7695,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7658,11 +7705,58 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cb331cdf-6216-4dc5-a899-c768c9c56ad8 + - fb92353f-8a63-479b-8152-31768f799ea8 status: 404 Not Found code: 404 - duration: 38.603167ms - - id: 155 + duration: 97.069375ms + - id: 156 + request: + proto: HTTP/1.1 + proto_major: 1 + proto_minor: 1 + content_length: 0 + transfer_encoding: [] + trailer: {} + host: api.scaleway.com + remote_addr: "" + request_uri: "" + body: "" + form: {} + headers: + User-Agent: + - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/d9a1ae61-7045-4c33-8700-54a3587754f9 + method: DELETE + response: + proto: HTTP/2.0 + proto_major: 2 + proto_minor: 0 + transfer_encoding: [] + trailer: {} + content_length: 0 + uncompressed: false + body: "" + headers: + Content-Security-Policy: + - default-src 'none'; frame-ancestors 'none' + Content-Type: + - application/json + Date: + - Mon, 30 Jun 2025 15:48:52 GMT + Server: + - Scaleway API Gateway (fr-par-2;edge01) + Strict-Transport-Security: + - max-age=63072000 + X-Content-Type-Options: + - nosniff + X-Frame-Options: + - DENY + X-Request-Id: + - 1ab067df-076e-4a53-96ab-7c4fff327e8d + status: 204 No Content + code: 204 + duration: 100.453042ms + - id: 157 request: proto: HTTP/1.1 proto_major: 1 @@ -7678,7 +7772,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/instance/v1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: GET response: proto: HTTP/2.0 @@ -7686,20 +7780,20 @@ interactions: proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 463 + content_length: 143 uncompressed: false - body: '{"created_at":"2025-06-30T15:18:57.696688Z","id":"0f7ddbd6-1029-4876-a233-9df81e7f4481","last_detached_at":"2025-06-30T15:21:20.884170Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:21:20.884170Z","zone":"fr-par-1"}' + body: '{"message":"resource is not found","resource":"instance_volume","resource_id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","type":"not_found"}' headers: Content-Length: - - "463" + - "143" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7707,11 +7801,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a4603064-6b56-4112-a814-46b3d8e3f430 - status: 200 OK - code: 200 - duration: 44.86775ms - - id: 156 + - fb029f88-12db-4d24-a373-c7c51e1daab7 + status: 404 Not Found + code: 404 + duration: 69.5315ms + - id: 158 request: proto: HTTP/1.1 proto_major: 1 @@ -7727,26 +7821,28 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/74c0b78b-6821-4cd1-a33e-d0ed7beffef1 - method: DELETE + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 + method: GET response: proto: HTTP/2.0 proto_major: 2 proto_minor: 0 transfer_encoding: [] trailer: {} - content_length: 0 + content_length: 463 uncompressed: false - body: "" + body: '{"created_at":"2025-06-30T15:47:07.360962Z","id":"940f4598-08e6-414d-ac4d-ebc3ffc35254","last_detached_at":"2025-06-30T15:48:52.019416Z","name":"openvpn_sbs_volume_0","parent_snapshot_id":"b7f6e693-0416-45de-bad8-8f5f5e2cd9f3","project_id":"564aa517-68b0-4fd7-8c8c-d21c4bcdcbd5","references":[],"size":10000000000,"specs":{"class":"sbs","perf_iops":5000},"status":"available","tags":[],"type":"sbs_5k","updated_at":"2025-06-30T15:48:52.019416Z","zone":"fr-par-1"}' headers: + Content-Length: + - "463" Content-Security-Policy: - default-src 'none'; frame-ancestors 'none' Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7754,11 +7850,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - cfc3a7fe-4634-4f6f-9803-a297862dc579 - status: 204 No Content - code: 204 - duration: 73.202875ms - - id: 157 + - ba7ec1dc-8950-419f-b8e1-d0cce1f68018 + status: 200 OK + code: 200 + duration: 51.020417ms + - id: 159 request: proto: HTTP/1.1 proto_major: 1 @@ -7774,7 +7870,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/0f7ddbd6-1029-4876-a233-9df81e7f4481 + url: https://api.scaleway.com/block/v1alpha1/zones/fr-par-1/volumes/940f4598-08e6-414d-ac4d-ebc3ffc35254 method: DELETE response: proto: HTTP/2.0 @@ -7791,9 +7887,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7801,11 +7897,11 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - 114b62b4-1cec-481b-b9aa-ce4fa6e017a5 + - ef728333-533f-458a-91fc-0c9c6f3d76e7 status: 204 No Content code: 204 - duration: 86.474959ms - - id: 158 + duration: 91.185ms + - id: 160 request: proto: HTTP/1.1 proto_major: 1 @@ -7821,7 +7917,7 @@ interactions: headers: User-Agent: - scaleway-sdk-go/v1.0.0-beta.7+dev (go1.24.4; darwin; arm64) terraform-provider/develop terraform/terraform-tests - url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/7848fcb8-91d0-4fb4-98c5-02c75ddfede6 + url: https://api.scaleway.com/vpc/v2/regions/fr-par/routes/b42b7abb-6750-4a86-bf83-be23105b0310 method: GET response: proto: HTTP/2.0 @@ -7840,9 +7936,9 @@ interactions: Content-Type: - application/json Date: - - Mon, 30 Jun 2025 15:21:21 GMT + - Mon, 30 Jun 2025 15:48:52 GMT Server: - - Scaleway API Gateway (fr-par-2;edge03) + - Scaleway API Gateway (fr-par-2;edge01) Strict-Transport-Security: - max-age=63072000 X-Content-Type-Options: @@ -7850,7 +7946,7 @@ interactions: X-Frame-Options: - DENY X-Request-Id: - - a057b2a0-b2f7-4404-9c0a-e65fcb2e8107 + - 7447e1f5-0de4-470f-9803-de0c61fcedc2 status: 404 Not Found code: 404 - duration: 27.437083ms + duration: 26.077625ms